diff --git a/problem1.json b/problem1.json index e4afa2c..a37c9cc 100644 --- a/problem1.json +++ b/problem1.json @@ -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 D which for a given integer n, returns Dn where
D0 = 1
D1 = 1
...
Dn = Dn - 1 - Dn - 2", - "definition":"D0 = 1
D1 = 1
...
Dn = Dn - 1 - Dn - 2", + "description":"Implement the function D which for a given integer n, returns Dn where
D0 = 1
D1 = 1
    ⁞
Dn = Dn - 1 - Dn - 2", + "definition":"D0 = 1
D1 = 1
    ⁞
Dn = Dn - 1 - Dn - 2", "examples":[ "If n = 10, then D should return -1.", "If n = 20, then D should return 0."