Problem Solution Template: Difference between revisions
		
		
		
		Jump to navigation
		Jump to search
		
imported>Rubens No edit summary  | 
				imported>Rubens No edit summary  | 
				||
| Line 1: | Line 1: | ||
==   | == Introduction ==  | ||
==  | == Difficulty ==  | ||
===   | == Solution N (by X) ==  | ||
=== Idea ===  | |||
=== How to ===  | === How to ===  | ||
===   | === Solution - *Language X* ===  | ||
  1  #include <stdio.h>  |   1  #include <stdio.h>  | ||
| Line 20: | Line 19: | ||
  7  }  |   7  }  | ||
== Super Epic Fails ==  | |||
== ICPC Problems==  | |||
Revision as of 01:37, 11 November 2014
Introduction
Difficulty
Solution N (by X)
Idea
How to
Solution - *Language X*
1  #include <stdio.h>
2  
3  int main()
4  {
5      printf ("Hello Word!");
6      return 0;
7  }