lots of exercises in java... from https://github.com/exercism/java

config.json 5.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330
  1. {
  2. "slug": "java",
  3. "language": "Java",
  4. "repository": "https://github.com/exercism/xjava",
  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. ],
  58. "exercises": [
  59. {
  60. "slug": "hello-world",
  61. "difficulty": 1,
  62. "topics": []
  63. },
  64. {
  65. "slug": "etl",
  66. "difficulty": 1,
  67. "topics": []
  68. },
  69. {
  70. "slug": "nucleotide-count",
  71. "difficulty": 1,
  72. "topics": []
  73. },
  74. {
  75. "slug": "word-count",
  76. "difficulty": 1,
  77. "topics": []
  78. },
  79. {
  80. "slug": "pangram",
  81. "difficulty": 1,
  82. "topics": []
  83. },
  84. {
  85. "slug": "anagram",
  86. "difficulty": 1,
  87. "topics": []
  88. },
  89. {
  90. "slug": "hamming",
  91. "difficulty": 1,
  92. "topics": []
  93. },
  94. {
  95. "slug": "bob",
  96. "difficulty": 1,
  97. "topics": []
  98. },
  99. {
  100. "slug": "robot-name",
  101. "difficulty": 1,
  102. "topics": []
  103. },
  104. {
  105. "slug": "meetup",
  106. "difficulty": 1,
  107. "topics": []
  108. },
  109. {
  110. "slug": "phone-number",
  111. "difficulty": 1,
  112. "topics": []
  113. },
  114. {
  115. "slug": "grade-school",
  116. "difficulty": 1,
  117. "topics": []
  118. },
  119. {
  120. "slug": "space-age",
  121. "difficulty": 1,
  122. "topics": []
  123. },
  124. {
  125. "slug": "gigasecond",
  126. "difficulty": 1,
  127. "topics": []
  128. },
  129. {
  130. "slug": "triangle",
  131. "difficulty": 1,
  132. "topics": []
  133. },
  134. {
  135. "slug": "acronym",
  136. "difficulty": 1,
  137. "topics": []
  138. },
  139. {
  140. "slug": "scrabble-score",
  141. "difficulty": 1,
  142. "topics": []
  143. },
  144. {
  145. "slug": "roman-numerals",
  146. "difficulty": 1,
  147. "topics": []
  148. },
  149. {
  150. "slug": "prime-factors",
  151. "difficulty": 1,
  152. "topics": []
  153. },
  154. {
  155. "slug": "raindrops",
  156. "difficulty": 1,
  157. "topics": []
  158. },
  159. {
  160. "slug": "allergies",
  161. "difficulty": 1,
  162. "topics": []
  163. },
  164. {
  165. "slug": "strain",
  166. "difficulty": 1,
  167. "topics": []
  168. },
  169. {
  170. "slug": "atbash-cipher",
  171. "difficulty": 1,
  172. "topics": []
  173. },
  174. {
  175. "slug": "accumulate",
  176. "difficulty": 1,
  177. "topics": []
  178. },
  179. {
  180. "slug": "crypto-square",
  181. "difficulty": 1,
  182. "topics": []
  183. },
  184. {
  185. "slug": "rna-transcription",
  186. "difficulty": 1,
  187. "topics": []
  188. },
  189. {
  190. "slug": "sieve",
  191. "difficulty": 1,
  192. "topics": []
  193. },
  194. {
  195. "slug": "simple-cipher",
  196. "difficulty": 1,
  197. "topics": []
  198. },
  199. {
  200. "slug": "luhn",
  201. "difficulty": 1,
  202. "topics": []
  203. },
  204. {
  205. "slug": "pig-latin",
  206. "difficulty": 1,
  207. "topics": []
  208. },
  209. {
  210. "slug": "simple-linked-list",
  211. "difficulty": 1,
  212. "topics": []
  213. },
  214. {
  215. "slug": "sum-of-multiples",
  216. "difficulty": 1,
  217. "topics": []
  218. },
  219. {
  220. "slug": "linked-list",
  221. "difficulty": 1,
  222. "topics": []
  223. },
  224. {
  225. "slug": "nth-prime",
  226. "difficulty": 1,
  227. "topics": []
  228. },
  229. {
  230. "slug": "pascals-triangle",
  231. "difficulty": 1,
  232. "topics": []
  233. },
  234. {
  235. "slug": "beer-song",
  236. "difficulty": 1,
  237. "topics": []
  238. },
  239. {
  240. "slug": "difference-of-squares",
  241. "difficulty": 1,
  242. "topics": []
  243. },
  244. {
  245. "slug": "largest-series-product",
  246. "difficulty": 1,
  247. "topics": []
  248. },
  249. {
  250. "slug": "queen-attack",
  251. "difficulty": 1,
  252. "topics": []
  253. },
  254. {
  255. "slug": "minesweeper",
  256. "difficulty": 1,
  257. "topics": []
  258. },
  259. {
  260. "slug": "series",
  261. "difficulty": 1,
  262. "topics": []
  263. },
  264. {
  265. "slug": "robot-simulator",
  266. "difficulty": 1,
  267. "topics": []
  268. },
  269. {
  270. "slug": "bracket-push",
  271. "difficulty": 1,
  272. "topics": []
  273. },
  274. {
  275. "slug": "pythagorean-triplet",
  276. "difficulty": 1,
  277. "topics": []
  278. },
  279. {
  280. "slug": "binary-search-tree",
  281. "difficulty": 1,
  282. "topics": []
  283. },
  284. {
  285. "slug": "binary-search",
  286. "difficulty": 1,
  287. "topics": []
  288. },
  289. {
  290. "slug": "all-your-base",
  291. "difficulty": 1,
  292. "topics": []
  293. },
  294. {
  295. "slug": "custom-set",
  296. "difficulty": 1,
  297. "topics": []
  298. },
  299. {
  300. "slug": "wordy",
  301. "difficulty": 1,
  302. "topics": []
  303. },
  304. {
  305. "slug": "palindrome-products",
  306. "difficulty": 1,
  307. "topics": []
  308. }
  309. ],
  310. "deprecated": [
  311. "binary",
  312. "hexadecimal",
  313. "octal",
  314. "trinary"
  315. ],
  316. "ignored": [
  317. "_template",
  318. ".gradle",
  319. "build",
  320. "docs",
  321. "gradle",
  322. "scripts"
  323. ],
  324. "foregone": [
  325. "leap",
  326. "grains",
  327. "say"
  328. ]
  329. }