trackler 2.0.7.0 → 2.0.8.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (209) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +8 -0
  3. data/common/exercises/counter/metadata.yml +0 -4
  4. data/common/exercises/error-handling/metadata.yml +0 -4
  5. data/common/exercises/etl/canonical-data.json +1 -1
  6. data/common/exercises/hello-world/canonical-data.json +9 -21
  7. data/common/exercises/hello-world/description.md +7 -42
  8. data/common/exercises/hello-world/metadata.yml +1 -1
  9. data/common/exercises/lens-person/metadata.yml +0 -3
  10. data/common/exercises/luhn/canonical-data.json +17 -17
  11. data/common/exercises/nucleotide-codons/metadata.yml +0 -2
  12. data/common/exercises/react/metadata.yml +0 -2
  13. data/common/exercises/rectangles/metadata.yml +0 -3
  14. data/common/exercises/variable-length-quantity/metadata.yml +0 -2
  15. data/fixtures/tracks/snowflake/config.json +17 -0
  16. data/fixtures/tracks/snowflake/exercises/snowflake-only/description.md +1 -0
  17. data/fixtures/tracks/snowflake/exercises/snowflake-only/metadata.yml +4 -0
  18. data/lib/trackler/description.rb +27 -0
  19. data/lib/trackler/guaranteed_file.rb +77 -0
  20. data/lib/trackler/implementations.rb +5 -5
  21. data/lib/trackler/metadata.rb +27 -0
  22. data/lib/trackler/null_track.rb +22 -0
  23. data/lib/trackler/problem.rb +32 -34
  24. data/lib/trackler/track.rb +1 -1
  25. data/lib/trackler/version.rb +1 -1
  26. data/tracks/csharp/exercises/hello-world/Example.cs +2 -5
  27. data/tracks/csharp/exercises/hello-world/HelloWorldTest.cs +2 -16
  28. data/tracks/elixir/config.json +7 -0
  29. data/tracks/elixir/exercises/series/example.exs +13 -0
  30. data/tracks/elixir/exercises/series/series.exs +11 -0
  31. data/tracks/elixir/exercises/series/series_test.exs +53 -0
  32. data/tracks/erlang/README.md +3 -3
  33. data/tracks/erlang/config.json +15 -11
  34. data/tracks/erlang/exercises/{binary → all-your-base}/include/exercism.hrl +0 -0
  35. data/tracks/erlang/exercises/{binary → all-your-base}/rebar.config +0 -0
  36. data/tracks/erlang/exercises/{trinary/src/trinary.app.src → all-your-base/src/all_your_base.app.src} +2 -2
  37. data/tracks/erlang/exercises/all-your-base/src/example.erl +33 -0
  38. data/tracks/erlang/exercises/all-your-base/test/all_your_base_tests.erl +69 -0
  39. data/tracks/erlang/exercises/hello-world/src/example.erl +4 -4
  40. data/tracks/erlang/exercises/hello-world/test/hello_world_tests.erl +3 -12
  41. data/tracks/erlang/exercises/{trinary → rotational-cipher}/include/exercism.hrl +0 -0
  42. data/tracks/erlang/exercises/{trinary → rotational-cipher}/rebar.config +8 -1
  43. data/tracks/erlang/exercises/rotational-cipher/src/example.erl +19 -0
  44. data/tracks/erlang/exercises/{binary/src/binary.app.src → rotational-cipher/src/rotational_cipher.app.src} +2 -2
  45. data/tracks/erlang/exercises/rotational-cipher/test/rotational_cipher_tests.erl +98 -0
  46. data/tracks/fsharp/exercises/grep/GrepTest.fs +57 -0
  47. data/tracks/fsharp/exercises/hello-world/Example.fs +1 -1
  48. data/tracks/fsharp/exercises/hello-world/HelloWorldTest.fs +2 -12
  49. data/tracks/go/.travis.yml +7 -15
  50. data/tracks/go/exercises/hello-world/example.go +4 -8
  51. data/tracks/go/exercises/hello-world/hello_test.go +20 -16
  52. data/tracks/go/exercises/hello-world/hello_world.go +12 -2
  53. data/tracks/groovy/exercises/hello-world/Example.groovy +2 -2
  54. data/tracks/groovy/exercises/hello-world/HelloWorld.groovy +1 -1
  55. data/tracks/groovy/exercises/hello-world/HelloWorldSpec.groovy +1 -14
  56. data/tracks/haskell/config.json +6 -0
  57. data/tracks/haskell/exercises/hello-world/HINTS.md +6 -0
  58. data/tracks/haskell/exercises/hello-world/examples/success-standard/package.yaml +16 -0
  59. data/tracks/haskell/exercises/hello-world/examples/success-standard/src/HelloWorld.hs +4 -0
  60. data/tracks/haskell/exercises/hello-world/package.yaml +19 -0
  61. data/tracks/haskell/exercises/hello-world/src/HelloWorld.hs +4 -0
  62. data/tracks/haskell/exercises/hello-world/stack.yaml +1 -0
  63. data/tracks/haskell/exercises/hello-world/test/Tests.hs +13 -0
  64. data/tracks/idris/config.json +9 -0
  65. data/tracks/idris/exercises/leap/Leap.ipkg +5 -0
  66. data/tracks/idris/exercises/leap/Makefile +23 -0
  67. data/tracks/idris/exercises/leap/src/Leap.idr +5 -0
  68. data/tracks/idris/exercises/leap/src/Test/Leap.idr +37 -0
  69. data/tracks/idris/exercises/leap/src/example.idr +8 -0
  70. data/tracks/{typescript/exercises → java}/.keep +0 -0
  71. data/tracks/java/config.json +115 -172
  72. data/tracks/java/exercises/anagram/src/test/java/AnagramTest.java +41 -13
  73. data/tracks/java/exercises/list-ops/build.gradle +18 -0
  74. data/tracks/java/exercises/list-ops/src/example/java/ListOps.java +51 -0
  75. data/tracks/java/exercises/list-ops/src/main/java/.keep +0 -0
  76. data/tracks/java/exercises/list-ops/src/test/java/ListOpsTest.java +316 -0
  77. data/tracks/java/exercises/palindrome-products/src/example/java/Palindromes.java +28 -62
  78. data/tracks/java/exercises/palindrome-products/src/test/java/PalindromesTest.java +26 -83
  79. data/tracks/java/exercises/settings.gradle +1 -0
  80. data/tracks/julia/config.json +1 -2
  81. data/tracks/julia/exercises/hello-world/example.jl +2 -2
  82. data/tracks/julia/exercises/hello-world/runtests.jl +1 -6
  83. data/tracks/lua/exercises/TRACK_HINTS.md +8 -0
  84. data/tracks/lua/exercises/hello-world/example.lua +2 -3
  85. data/tracks/lua/exercises/hello-world/hello-world.lua +18 -0
  86. data/tracks/lua/exercises/hello-world/hello-world_spec.lua +6 -12
  87. data/tracks/ocaml/exercises/phone-number/example.ml +8 -18
  88. data/tracks/ocaml/exercises/phone-number/phone_number.mli +1 -7
  89. data/tracks/ocaml/exercises/phone-number/test.ml +24 -23
  90. data/tracks/ocaml/tools/test-generator/src/special_cases.ml +6 -0
  91. data/tracks/ocaml/tools/test-generator/templates/phone-number/template.ml +21 -0
  92. data/tracks/pony/config.json +2 -2
  93. data/tracks/pony/exercises/hello-world/example.pony +1 -2
  94. data/tracks/pony/exercises/hello-world/test.pony +0 -1
  95. data/tracks/rust/config.json +0 -1
  96. data/tracks/rust/exercises/hello-world/example.rs +2 -5
  97. data/tracks/rust/exercises/hello-world/tests/hello-world.rs +2 -14
  98. data/tracks/scala/config.json +11 -2
  99. data/tracks/scala/docs/LEARNING.md +10 -2
  100. data/tracks/scala/docs/RESOURCES.md +0 -1
  101. data/tracks/scala/docs/TESTS.md +10 -6
  102. data/tracks/scala/exercises/rail-fence-cipher/build.sbt +3 -0
  103. data/tracks/scala/exercises/rail-fence-cipher/example.scala +46 -0
  104. data/tracks/scala/exercises/rail-fence-cipher/src/main/scala/RailFenceCipher.scala +0 -0
  105. data/tracks/scala/exercises/rail-fence-cipher/src/test/scala/RailFenceCipherTest.scala +42 -0
  106. data/tracks/scala/testgen/src/main/scala/RailFenceCipherTestGenerator.scala +59 -0
  107. data/tracks/typescript/.gitignore +7 -0
  108. data/tracks/typescript/.travis.yml +18 -1
  109. data/tracks/typescript/Dangerfile +43 -0
  110. data/tracks/typescript/Makefile +57 -0
  111. data/tracks/typescript/README.md +38 -5
  112. data/tracks/typescript/SETUP.md +24 -0
  113. data/tracks/typescript/common/package.json +37 -0
  114. data/tracks/typescript/common/tsconfig.json +21 -0
  115. data/tracks/typescript/common/tslint.json +127 -0
  116. data/tracks/typescript/common/yarn.lock +2697 -0
  117. data/tracks/typescript/config.json +82 -2
  118. data/tracks/typescript/docs/ABOUT.md +1 -0
  119. data/tracks/typescript/docs/INSTALLATION.md +17 -0
  120. data/tracks/typescript/docs/LEARNING.md +8 -0
  121. data/tracks/typescript/docs/RESOURCES.md +7 -0
  122. data/tracks/typescript/docs/TESTS.md +36 -0
  123. data/tracks/typescript/exercises/anagram/anagram.example.ts +23 -0
  124. data/tracks/typescript/exercises/anagram/anagram.test.ts +82 -0
  125. data/tracks/typescript/exercises/anagram/package.json +37 -0
  126. data/tracks/typescript/exercises/anagram/tsconfig.json +21 -0
  127. data/tracks/typescript/exercises/anagram/tslint.json +127 -0
  128. data/tracks/typescript/exercises/anagram/yarn.lock +2697 -0
  129. data/tracks/typescript/exercises/beer-song/beer-song.example.ts +36 -0
  130. data/tracks/typescript/exercises/beer-song/beer-song.test.ts +360 -0
  131. data/tracks/typescript/exercises/beer-song/package.json +37 -0
  132. data/tracks/typescript/exercises/beer-song/tsconfig.json +21 -0
  133. data/tracks/typescript/exercises/beer-song/tslint.json +127 -0
  134. data/tracks/typescript/exercises/beer-song/yarn.lock +2697 -0
  135. data/tracks/typescript/exercises/bob/bob.example.ts +24 -0
  136. data/tracks/typescript/exercises/bob/bob.test.ts +92 -0
  137. data/tracks/typescript/exercises/bob/package.json +37 -0
  138. data/tracks/typescript/exercises/bob/tsconfig.json +21 -0
  139. data/tracks/typescript/exercises/bob/tslint.json +127 -0
  140. data/tracks/typescript/exercises/bob/yarn.lock +2697 -0
  141. data/tracks/typescript/exercises/gigasecond/gigasecond.example.ts +11 -0
  142. data/tracks/typescript/exercises/gigasecond/gigasecond.test.ts +29 -0
  143. data/tracks/typescript/exercises/gigasecond/package.json +37 -0
  144. data/tracks/typescript/exercises/gigasecond/tsconfig.json +21 -0
  145. data/tracks/typescript/exercises/gigasecond/tslint.json +127 -0
  146. data/tracks/typescript/exercises/gigasecond/yarn.lock +2697 -0
  147. data/tracks/typescript/exercises/hamming/hamming.example.ts +19 -0
  148. data/tracks/typescript/exercises/hamming/hamming.test.ts +39 -0
  149. data/tracks/typescript/exercises/hamming/package.json +37 -0
  150. data/tracks/typescript/exercises/hamming/tsconfig.json +21 -0
  151. data/tracks/typescript/exercises/hamming/tslint.json +127 -0
  152. data/tracks/typescript/exercises/hamming/yarn.lock +2697 -0
  153. data/tracks/typescript/exercises/hello-world/hello-world.example.ts +8 -0
  154. data/tracks/typescript/exercises/hello-world/hello-world.test.ts +17 -0
  155. data/tracks/typescript/exercises/hello-world/package.json +37 -0
  156. data/tracks/typescript/exercises/hello-world/tsconfig.json +21 -0
  157. data/tracks/typescript/exercises/hello-world/tslint.json +127 -0
  158. data/tracks/typescript/exercises/hello-world/yarn.lock +2697 -0
  159. data/tracks/typescript/exercises/leap/leap.example.ts +6 -0
  160. data/tracks/typescript/exercises/leap/leap.test.ts +39 -0
  161. data/tracks/typescript/exercises/leap/package.json +37 -0
  162. data/tracks/typescript/exercises/leap/tsconfig.json +21 -0
  163. data/tracks/typescript/exercises/leap/tslint.json +127 -0
  164. data/tracks/typescript/exercises/leap/yarn.lock +2697 -0
  165. data/tracks/typescript/exercises/pangram/package.json +37 -0
  166. data/tracks/typescript/exercises/pangram/pangram.example.ts +32 -0
  167. data/tracks/typescript/exercises/pangram/pangram.test.ts +50 -0
  168. data/tracks/typescript/exercises/pangram/tsconfig.json +21 -0
  169. data/tracks/typescript/exercises/pangram/tslint.json +127 -0
  170. data/tracks/typescript/exercises/pangram/yarn.lock +2697 -0
  171. data/tracks/typescript/exercises/phone-number/package.json +37 -0
  172. data/tracks/typescript/exercises/phone-number/phone-number.example.ts +21 -0
  173. data/tracks/typescript/exercises/phone-number/phone-number.test.ts +55 -0
  174. data/tracks/typescript/exercises/phone-number/tsconfig.json +21 -0
  175. data/tracks/typescript/exercises/phone-number/tslint.json +127 -0
  176. data/tracks/typescript/exercises/phone-number/yarn.lock +2697 -0
  177. data/tracks/typescript/exercises/rna-transcription/package.json +37 -0
  178. data/tracks/typescript/exercises/rna-transcription/rna-transcription.example.ts +13 -0
  179. data/tracks/typescript/exercises/rna-transcription/rna-transcription.test.ts +45 -0
  180. data/tracks/typescript/exercises/rna-transcription/tsconfig.json +21 -0
  181. data/tracks/typescript/exercises/rna-transcription/tslint.json +127 -0
  182. data/tracks/typescript/exercises/rna-transcription/yarn.lock +2697 -0
  183. data/tracks/typescript/exercises/say/package.json +37 -0
  184. data/tracks/typescript/exercises/say/say.example.ts +95 -0
  185. data/tracks/typescript/exercises/say/say.test.ts +78 -0
  186. data/tracks/typescript/exercises/say/tsconfig.json +21 -0
  187. data/tracks/typescript/exercises/say/tslint.json +127 -0
  188. data/tracks/typescript/exercises/say/yarn.lock +2697 -0
  189. data/tracks/typescript/exercises/word-count/package.json +37 -0
  190. data/tracks/typescript/exercises/word-count/tsconfig.json +21 -0
  191. data/tracks/typescript/exercises/word-count/tslint.json +127 -0
  192. data/tracks/typescript/exercises/word-count/word-count.example.ts +16 -0
  193. data/tracks/typescript/exercises/word-count/word-count.test.ts +65 -0
  194. data/tracks/typescript/exercises/word-count/yarn.lock +2697 -0
  195. data/tracks/typescript/exercises/wordy/package.json +37 -0
  196. data/tracks/typescript/exercises/wordy/tsconfig.json +21 -0
  197. data/tracks/typescript/exercises/wordy/tslint.json +127 -0
  198. data/tracks/typescript/exercises/wordy/wordy.example.ts +40 -0
  199. data/tracks/typescript/exercises/wordy/wordy.test.ts +89 -0
  200. data/tracks/typescript/exercises/wordy/yarn.lock +2697 -0
  201. data/tracks/typescript/img/icon.png +0 -0
  202. data/tracks/typescript/img/icon.svg +10 -0
  203. metadata +134 -15
  204. data/tracks/erlang/exercises/binary/src/example.erl +0 -20
  205. data/tracks/erlang/exercises/binary/test/binary_string_tests.erl +0 -26
  206. data/tracks/erlang/exercises/trinary/Makefile +0 -10
  207. data/tracks/erlang/exercises/trinary/src/example.erl +0 -66
  208. data/tracks/erlang/exercises/trinary/test/trinary_tests.erl +0 -36
  209. data/tracks/fsharp/exercises/hello-world/HINTS.md +0 -5
@@ -4,6 +4,12 @@
4
4
  "repository": "https://github.com/exercism/xhaskell",
5
5
  "active": true,
6
6
  "exercises": [
7
+ {
8
+ "slug": "hello-world",
9
+ "difficulty": 1,
10
+ "topics": [
11
+ ]
12
+ },
7
13
  {
8
14
  "slug": "leap",
9
15
  "difficulty": 1,
@@ -0,0 +1,6 @@
1
+ ## Hints
2
+
3
+ To complete this exercise, you need to implement the `hello` function.
4
+
5
+ You will find the type signature for `hello` already in place,
6
+ but it is up to you to define the function.
@@ -0,0 +1,16 @@
1
+ name: hello-world
2
+
3
+ dependencies:
4
+ - base
5
+
6
+ library:
7
+ exposed-modules: HelloWorld
8
+ source-dirs: src
9
+
10
+ tests:
11
+ test:
12
+ main: Tests.hs
13
+ source-dirs: test
14
+ dependencies:
15
+ - hello-world
16
+ - hspec
@@ -0,0 +1,4 @@
1
+ module HelloWorld (hello) where
2
+
3
+ hello :: String
4
+ hello = "Hello, World!"
@@ -0,0 +1,19 @@
1
+ name: hello-world
2
+
3
+ dependencies:
4
+ - base
5
+
6
+ library:
7
+ exposed-modules: HelloWorld
8
+ source-dirs: src
9
+ dependencies:
10
+ # - foo # List here the packages you
11
+ # - bar # want to use in your solution.
12
+
13
+ tests:
14
+ test:
15
+ main: Tests.hs
16
+ source-dirs: test
17
+ dependencies:
18
+ - hello-world
19
+ - hspec
@@ -0,0 +1,4 @@
1
+ module HelloWorld (hello) where
2
+
3
+ hello :: String
4
+ hello = error "You need to implement this function."
@@ -0,0 +1 @@
1
+ resolver: lts-7.16
@@ -0,0 +1,13 @@
1
+ import Test.Hspec (Spec, describe, it, shouldBe)
2
+ import Test.Hspec.Runner (configFastFail, defaultConfig, hspecWith)
3
+
4
+ import HelloWorld (hello)
5
+
6
+ main :: IO ()
7
+ main = hspecWith defaultConfig {configFastFail = True} specs
8
+
9
+ specs :: Spec
10
+ specs = describe "hello-world" $
11
+
12
+ it "hello" $
13
+ hello `shouldBe` "Hello, World!"
@@ -22,6 +22,15 @@
22
22
  "optional values",
23
23
  "text formatting"
24
24
  ]
25
+ },
26
+ {
27
+ "slug": "leap",
28
+ "difficulty": 1,
29
+ "topics": [
30
+ "Integers",
31
+ "Booleans",
32
+ "Arithmetic"
33
+ ]
25
34
  }
26
35
  ]
27
36
  }
@@ -0,0 +1,5 @@
1
+ package leap
2
+
3
+ sourcedir = src
4
+ modules = Leap, Test.Leap
5
+ tests = Test.Leap.runTests
@@ -0,0 +1,23 @@
1
+ idris ?= idris
2
+ pkg := Leap
3
+
4
+ .PHONY: build clean clobber install rebuild test
5
+
6
+ all: build
7
+
8
+ build:
9
+ @ ${idris} --build ${pkg}.ipkg
10
+
11
+ clean:
12
+ @ ${idris} --clean ${pkg}.ipkg
13
+
14
+ clobber: clean
15
+ @ find . -name '*.ibc' -delete
16
+
17
+ install:
18
+ @ ${idris} --install ${pkg}.ipkg
19
+
20
+ rebuild: clean build
21
+
22
+ test:
23
+ @ ${idris} --testpkg ${pkg}.ipkg
@@ -0,0 +1,5 @@
1
+ module Leap
2
+
3
+ export
4
+ isLeap : Int -> Bool
5
+ isLeap year = ?is_leap_year
@@ -0,0 +1,37 @@
1
+ module Test.Leap
2
+
3
+ import Leap
4
+
5
+ %access export
6
+
7
+ assertBool : Bool -> Bool -> IO ()
8
+ assertBool expected given = putStrLn $ if given == expected then "Test Passed" else "Test Failed"
9
+
10
+ assertTrue : Bool -> IO ()
11
+ assertTrue = assertBool True
12
+
13
+ assertFalse : Bool -> IO ()
14
+ assertFalse = assertBool False
15
+
16
+ -- year not divisible by 4: common year
17
+ test2015 : IO ()
18
+ test2015 = assertFalse (isLeap 2015)
19
+
20
+ -- year divisible by 4, not divisible by 100: leap year
21
+ test2016 : IO ()
22
+ test2016 = assertTrue (isLeap 2016)
23
+
24
+ -- year divisible by 100, not divisible by 400: common year
25
+ test2100 : IO ()
26
+ test2100 = assertFalse (isLeap 2100)
27
+
28
+ -- year divisible by 400: leap year
29
+ test2000 : IO ()
30
+ test2000 = assertTrue (isLeap 2000)
31
+
32
+ runTests : IO ()
33
+ runTests = do
34
+ test2015
35
+ test2016
36
+ test2100
37
+ test2000
@@ -0,0 +1,8 @@
1
+ module Leap
2
+
3
+ export
4
+ isLeap : Int -> Bool
5
+ isLeap year =
6
+ (divBy 4 && not (divBy 100)) || divBy 400
7
+ where divBy : Int -> Bool
8
+ divBy n = (year `mod` n) == 0
File without changes
@@ -3,68 +3,6 @@
3
3
  "language": "Java",
4
4
  "repository": "https://github.com/exercism/xjava",
5
5
  "active": true,
6
- "problems": [
7
- "hello-world",
8
- "etl",
9
- "nucleotide-count",
10
- "word-count",
11
- "pangram",
12
- "anagram",
13
- "hamming",
14
- "bob",
15
- "robot-name",
16
- "meetup",
17
- "phone-number",
18
- "grade-school",
19
- "space-age",
20
- "gigasecond",
21
- "triangle",
22
- "acronym",
23
- "scrabble-score",
24
- "roman-numerals",
25
- "prime-factors",
26
- "raindrops",
27
- "allergies",
28
- "strain",
29
- "atbash-cipher",
30
- "accumulate",
31
- "crypto-square",
32
- "rna-transcription",
33
- "sieve",
34
- "simple-cipher",
35
- "luhn",
36
- "pig-latin",
37
- "simple-linked-list",
38
- "sum-of-multiples",
39
- "linked-list",
40
- "nth-prime",
41
- "pascals-triangle",
42
- "beer-song",
43
- "difference-of-squares",
44
- "largest-series-product",
45
- "queen-attack",
46
- "minesweeper",
47
- "series",
48
- "robot-simulator",
49
- "bracket-push",
50
- "pythagorean-triplet",
51
- "binary-search-tree",
52
- "binary-search",
53
- "all-your-base",
54
- "custom-set",
55
- "wordy",
56
- "palindrome-products",
57
- "twelve-days",
58
- "sublist",
59
- "rectangles",
60
- "matrix",
61
- "clock",
62
- "diamond",
63
- "secret-handshake",
64
- "flatten-array",
65
- "perfect-numbers",
66
- "change"
67
- ],
68
6
  "exercises": [
69
7
  {
70
8
  "slug": "hello-world",
@@ -72,287 +10,287 @@
72
10
  "topics": []
73
11
  },
74
12
  {
75
- "slug": "etl",
76
- "difficulty": 1,
13
+ "slug": "rna-transcription",
14
+ "difficulty": 2,
77
15
  "topics": []
78
16
  },
79
17
  {
80
- "slug": "nucleotide-count",
81
- "difficulty": 1,
18
+ "slug": "pangram",
19
+ "difficulty": 3,
82
20
  "topics": []
83
21
  },
84
22
  {
85
- "slug": "word-count",
86
- "difficulty": 1,
23
+ "slug": "hamming",
24
+ "difficulty": 3,
87
25
  "topics": []
88
26
  },
89
27
  {
90
- "slug": "pangram",
91
- "difficulty": 1,
28
+ "slug": "gigasecond",
29
+ "difficulty": 3,
92
30
  "topics": []
93
31
  },
94
32
  {
95
- "slug": "anagram",
96
- "difficulty": 1,
33
+ "slug": "space-age",
34
+ "difficulty": 3,
97
35
  "topics": []
98
36
  },
99
37
  {
100
- "slug": "hamming",
101
- "difficulty": 1,
38
+ "slug": "acronym",
39
+ "difficulty": 3,
102
40
  "topics": []
103
41
  },
104
42
  {
105
- "slug": "bob",
106
- "difficulty": 1,
43
+ "slug": "scrabble-score",
44
+ "difficulty": 3,
107
45
  "topics": []
108
46
  },
109
47
  {
110
- "slug": "robot-name",
111
- "difficulty": 1,
48
+ "slug": "raindrops",
49
+ "difficulty": 3,
112
50
  "topics": []
113
51
  },
114
52
  {
115
- "slug": "meetup",
116
- "difficulty": 1,
53
+ "slug": "difference-of-squares",
54
+ "difficulty": 3,
117
55
  "topics": []
118
56
  },
119
57
  {
120
- "slug": "phone-number",
121
- "difficulty": 1,
58
+ "slug": "secret-handshake",
59
+ "difficulty": 3,
122
60
  "topics": []
123
61
  },
124
62
  {
125
- "slug": "grade-school",
126
- "difficulty": 1,
63
+ "slug": "sum-of-multiples",
64
+ "difficulty": 4,
127
65
  "topics": []
128
66
  },
129
67
  {
130
- "slug": "space-age",
131
- "difficulty": 1,
68
+ "slug": "luhn",
69
+ "difficulty": 4,
132
70
  "topics": []
133
71
  },
134
72
  {
135
- "slug": "gigasecond",
136
- "difficulty": 1,
73
+ "slug": "matrix",
74
+ "difficulty": 4,
137
75
  "topics": []
138
76
  },
139
77
  {
140
78
  "slug": "triangle",
141
- "difficulty": 1,
79
+ "difficulty": 4,
142
80
  "topics": []
143
81
  },
144
82
  {
145
- "slug": "acronym",
146
- "difficulty": 1,
83
+ "slug": "largest-series-product",
84
+ "difficulty": 4,
147
85
  "topics": []
148
86
  },
149
87
  {
150
- "slug": "scrabble-score",
151
- "difficulty": 1,
88
+ "slug": "sieve",
89
+ "difficulty": 4,
152
90
  "topics": []
153
91
  },
154
92
  {
155
- "slug": "roman-numerals",
156
- "difficulty": 1,
93
+ "slug": "twelve-days",
94
+ "difficulty": 4,
157
95
  "topics": []
158
96
  },
159
97
  {
160
- "slug": "prime-factors",
161
- "difficulty": 1,
98
+ "slug": "nth-prime",
99
+ "difficulty": 4,
162
100
  "topics": []
163
101
  },
164
102
  {
165
- "slug": "raindrops",
166
- "difficulty": 1,
103
+ "slug": "diamond",
104
+ "difficulty": 4,
167
105
  "topics": []
168
106
  },
169
107
  {
170
- "slug": "allergies",
171
- "difficulty": 1,
108
+ "slug": "flatten-array",
109
+ "difficulty": 5,
172
110
  "topics": []
173
111
  },
174
112
  {
175
- "slug": "strain",
176
- "difficulty": 1,
113
+ "slug": "pig-latin",
114
+ "difficulty": 5,
177
115
  "topics": []
178
116
  },
179
117
  {
180
- "slug": "atbash-cipher",
181
- "difficulty": 1,
118
+ "slug": "phone-number",
119
+ "difficulty": 5,
182
120
  "topics": []
183
121
  },
184
122
  {
185
123
  "slug": "accumulate",
186
- "difficulty": 1,
124
+ "difficulty": 5,
187
125
  "topics": []
188
126
  },
189
127
  {
190
- "slug": "crypto-square",
191
- "difficulty": 1,
128
+ "slug": "nucleotide-count",
129
+ "difficulty": 5,
192
130
  "topics": []
193
131
  },
194
132
  {
195
- "slug": "rna-transcription",
196
- "difficulty": 1,
133
+ "slug": "word-count",
134
+ "difficulty": 5,
197
135
  "topics": []
198
136
  },
199
137
  {
200
- "slug": "sieve",
201
- "difficulty": 1,
138
+ "slug": "robot-name",
139
+ "difficulty": 5,
202
140
  "topics": []
203
141
  },
204
142
  {
205
- "slug": "simple-cipher",
206
- "difficulty": 1,
143
+ "slug": "prime-factors",
144
+ "difficulty": 5,
207
145
  "topics": []
208
146
  },
209
147
  {
210
- "slug": "luhn",
211
- "difficulty": 1,
148
+ "slug": "allergies",
149
+ "difficulty": 5,
212
150
  "topics": []
213
151
  },
214
152
  {
215
- "slug": "pig-latin",
216
- "difficulty": 1,
153
+ "slug": "bob",
154
+ "difficulty": 5,
217
155
  "topics": []
218
156
  },
219
157
  {
220
- "slug": "simple-linked-list",
221
- "difficulty": 1,
158
+ "slug": "pascals-triangle",
159
+ "difficulty": 5,
222
160
  "topics": []
223
161
  },
224
162
  {
225
- "slug": "sum-of-multiples",
226
- "difficulty": 1,
163
+ "slug": "bracket-push",
164
+ "difficulty": 5,
227
165
  "topics": []
228
166
  },
229
167
  {
230
- "slug": "linked-list",
231
- "difficulty": 1,
168
+ "slug": "series",
169
+ "difficulty": 5,
232
170
  "topics": []
233
171
  },
234
172
  {
235
- "slug": "nth-prime",
236
- "difficulty": 1,
173
+ "slug": "atbash-cipher",
174
+ "difficulty": 5,
237
175
  "topics": []
238
176
  },
239
177
  {
240
- "slug": "pascals-triangle",
241
- "difficulty": 1,
178
+ "slug": "strain",
179
+ "difficulty": 5,
242
180
  "topics": []
243
181
  },
244
182
  {
245
- "slug": "beer-song",
246
- "difficulty": 1,
183
+ "slug": "roman-numerals",
184
+ "difficulty": 6,
247
185
  "topics": []
248
186
  },
249
187
  {
250
- "slug": "difference-of-squares",
251
- "difficulty": 1,
188
+ "slug": "beer-song",
189
+ "difficulty": 6,
252
190
  "topics": []
253
191
  },
254
192
  {
255
- "slug": "largest-series-product",
256
- "difficulty": 1,
193
+ "slug": "queen-attack",
194
+ "difficulty": 6,
257
195
  "topics": []
258
196
  },
259
197
  {
260
- "slug": "queen-attack",
261
- "difficulty": 1,
198
+ "slug": "etl",
199
+ "difficulty": 6,
262
200
  "topics": []
263
201
  },
264
202
  {
265
- "slug": "minesweeper",
266
- "difficulty": 1,
203
+ "slug": "linked-list",
204
+ "difficulty": 6,
267
205
  "topics": []
268
206
  },
269
207
  {
270
- "slug": "series",
271
- "difficulty": 1,
208
+ "slug": "grade-school",
209
+ "difficulty": 6,
272
210
  "topics": []
273
211
  },
274
212
  {
275
213
  "slug": "robot-simulator",
276
- "difficulty": 1,
214
+ "difficulty": 6,
277
215
  "topics": []
278
216
  },
279
217
  {
280
- "slug": "bracket-push",
281
- "difficulty": 1,
218
+ "slug": "binary-search",
219
+ "difficulty": 6,
282
220
  "topics": []
283
221
  },
284
222
  {
285
- "slug": "pythagorean-triplet",
286
- "difficulty": 1,
223
+ "slug": "minesweeper",
224
+ "difficulty": 6,
287
225
  "topics": []
288
226
  },
289
227
  {
290
- "slug": "binary-search-tree",
291
- "difficulty": 1,
228
+ "slug": "wordy",
229
+ "difficulty": 6,
292
230
  "topics": []
293
231
  },
294
232
  {
295
- "slug": "binary-search",
296
- "difficulty": 1,
233
+ "slug": "all-your-base",
234
+ "difficulty": 6,
297
235
  "topics": []
298
236
  },
299
237
  {
300
- "slug": "all-your-base",
301
- "difficulty": 1,
238
+ "slug": "anagram",
239
+ "difficulty": 7,
302
240
  "topics": []
303
241
  },
304
242
  {
305
- "slug": "custom-set",
306
- "difficulty": 1,
243
+ "slug": "sublist",
244
+ "difficulty": 7,
307
245
  "topics": []
308
246
  },
309
247
  {
310
- "slug": "wordy",
311
- "difficulty": 1,
248
+ "slug": "simple-linked-list",
249
+ "difficulty": 7,
312
250
  "topics": []
313
251
  },
314
252
  {
315
- "slug": "palindrome-products",
316
- "difficulty": 1,
253
+ "slug": "binary-search-tree",
254
+ "difficulty": 7,
317
255
  "topics": []
318
256
  },
319
257
  {
320
- "slug": "twelve-days",
321
- "difficulty": 1,
258
+ "slug": "rectangles",
259
+ "difficulty": 7,
322
260
  "topics": []
323
261
  },
324
262
  {
325
- "slug": "sublist",
326
- "difficulty": 1,
263
+ "slug": "meetup",
264
+ "difficulty": 7,
327
265
  "topics": []
328
266
  },
329
267
  {
330
- "slug": "rectangles",
331
- "difficulty": 1,
268
+ "slug": "crypto-square",
269
+ "difficulty": 7,
332
270
  "topics": []
333
271
  },
334
272
  {
335
- "slug": "matrix",
336
- "difficulty": 1,
273
+ "slug": "simple-cipher",
274
+ "difficulty": 8,
337
275
  "topics": []
338
276
  },
339
277
  {
340
- "slug": "clock",
341
- "difficulty": 1,
278
+ "slug": "palindrome-products",
279
+ "difficulty": 8,
342
280
  "topics": []
343
281
  },
344
282
  {
345
- "slug": "diamond",
346
- "difficulty": 1,
283
+ "slug": "pythagorean-triplet",
284
+ "difficulty": 9,
347
285
  "topics": []
348
286
  },
349
287
  {
350
- "slug": "secret-handshake",
351
- "difficulty": 1,
288
+ "slug": "custom-set",
289
+ "difficulty": 10,
352
290
  "topics": []
353
291
  },
354
292
  {
355
- "slug": "flatten-array",
293
+ "slug": "clock",
356
294
  "difficulty": 1,
357
295
  "topics": []
358
296
  },
@@ -365,6 +303,11 @@
365
303
  "slug": "change",
366
304
  "difficulty": 1,
367
305
  "topics": []
306
+ },
307
+ {
308
+ "slug": "list-ops",
309
+ "difficulty": 1,
310
+ "topics": []
368
311
  }
369
312
  ],
370
313
  "deprecated": [