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

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