Skip to content

Commit

Permalink
Fixed problem 1 text formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
martinvl committed Oct 29, 2014
1 parent d61c631 commit 44f5913
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions problem1.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@
"pythonDefault":"def D(n):",
"javaDefault":"public static int D(int n) {\n}",
"cDefault":"int D(int n)\n{\n}",
"description":"Implement the function <i>D</i> which for a given integer <i>n</i>, returns <i>D<sub>n</sub></i> where<br/><i>D<sub>0</sub></i> = 1<br/><i>D<sub>1</sub></i> = 1<br/>...<br/><i>D<sub>n</sub></i> = <i>D<sub>n - 1</sub></i> - <i>D<sub>n - 2</sub></i>",
"definition":"<i>D<sub>0</sub></i> = 1<br/><i>D<sub>1</sub></i> = 1<br/>...<br/><i>D<sub>n</sub></i> = <i>D<sub>n - 1</sub></i> - <i>D<sub>n - 2</sub></i>",
"description":"Implement the function <i>D</i> which for a given integer <i>n</i>, returns <i>D<sub>n</sub></i> where<br/><i>D<sub>0</sub></i> = 1<br/><i>D<sub>1</sub></i> = 1<br/>&nbsp;&nbsp;&nbsp;&nbsp;&#8286;<br/><i>D<sub>n</sub></i> = <i>D<sub>n - 1</sub></i> - <i>D<sub>n - 2</sub></i>",
"definition":"<i>D<sub>0</sub></i> = 1<br/><i>D<sub>1</sub></i> = 1<br/>&nbsp;&nbsp;&nbsp;&nbsp;&#8286;<br/><i>D<sub>n</sub></i> = <i>D<sub>n - 1</sub></i> - <i>D<sub>n - 2</sub></i>",
"examples":[
"If <i>n</i> = 10, then <i>D</i> should return -1.",
"If <i>n</i> = 20, then <i>D</i> should return 0."
Expand Down

0 comments on commit 44f5913

Please sign in to comment.