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

config.json 29KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342
  1. {
  2. "active": true,
  3. "blurb": "Java is a very widely used Object Oriented programming language. It's safe, simple to use and portable so that you can \"write once, run anywhere\".",
  4. "exercises": [
  5. {
  6. "core": true,
  7. "difficulty": 1,
  8. "slug": "hello-world",
  9. "topics": [
  10. "strings"
  11. ],
  12. "unlocked_by": null,
  13. "uuid": "f77dc7e3-35a8-4300-a7c8-2c1765e9644d"
  14. },
  15. {
  16. "core": true,
  17. "difficulty": 1,
  18. "slug": "two-fer",
  19. "topics": [
  20. "conditionals",
  21. "strings"
  22. ],
  23. "unlocked_by": null,
  24. "uuid": "74515d45-565b-4be2-96c4-77e58efa9257"
  25. },
  26. {
  27. "core": false,
  28. "difficulty": 1,
  29. "slug": "reverse-string",
  30. "topics": [
  31. "strings"
  32. ],
  33. "unlocked_by": "two-fer",
  34. "uuid": "2c8afeed-480e-41f3-ad58-590fa8f88029"
  35. },
  36. {
  37. "core": false,
  38. "difficulty": 2,
  39. "slug": "armstrong-numbers",
  40. "topics": [
  41. "integers",
  42. "mathematics"
  43. ],
  44. "unlocked_by": null,
  45. "uuid": "8e1dd48c-e05e-4a72-bf0f-5aed8dd123f5"
  46. },
  47. {
  48. "core": false,
  49. "difficulty": 2,
  50. "slug": "rna-transcription",
  51. "topics": [
  52. "loops",
  53. "maps",
  54. "strings"
  55. ],
  56. "unlocked_by": null,
  57. "uuid": "8e983ed2-62f7-439a-a144-fb8fdbdf4d30"
  58. },
  59. {
  60. "core": false,
  61. "difficulty": 3,
  62. "slug": "pangram",
  63. "topics": [
  64. "pattern_matching",
  65. "regular_expressions",
  66. "strings"
  67. ],
  68. "unlocked_by": null,
  69. "uuid": "133b0f84-bdc7-4508-a0a1-5732a7db81ef"
  70. },
  71. {
  72. "core": true,
  73. "difficulty": 3,
  74. "slug": "hamming",
  75. "topics": [
  76. "integers",
  77. "loops",
  78. "strings"
  79. ],
  80. "unlocked_by": null,
  81. "uuid": "ce899ca6-9cc7-47ba-b76f-1bbcf2630b76"
  82. },
  83. {
  84. "core": true,
  85. "difficulty": 3,
  86. "slug": "gigasecond",
  87. "topics": [
  88. "dates",
  89. "integers",
  90. "time"
  91. ],
  92. "unlocked_by": null,
  93. "uuid": "bf1641c8-dc0d-4d38-9cfe-b4c132ea3553"
  94. },
  95. {
  96. "core": false,
  97. "difficulty": 3,
  98. "slug": "space-age",
  99. "topics": [
  100. "conditionals",
  101. "floating_point_numbers",
  102. "mathematics"
  103. ],
  104. "unlocked_by": null,
  105. "uuid": "e5b524cd-3a1c-468a-8981-13e8eeccb29d"
  106. },
  107. {
  108. "core": false,
  109. "difficulty": 3,
  110. "slug": "acronym",
  111. "topics": [
  112. "loops",
  113. "parsing",
  114. "searching",
  115. "strings"
  116. ],
  117. "unlocked_by": null,
  118. "uuid": "c31bbc6d-bdcf-44f7-bf35-5f98752e38d0"
  119. },
  120. {
  121. "core": true,
  122. "difficulty": 3,
  123. "slug": "scrabble-score",
  124. "topics": [
  125. "games",
  126. "loops",
  127. "pattern_matching",
  128. "strings",
  129. "transforming"
  130. ],
  131. "unlocked_by": null,
  132. "uuid": "afae9f2d-8baf-4bd7-8d7c-d486337f7c97"
  133. },
  134. {
  135. "core": false,
  136. "difficulty": 3,
  137. "slug": "raindrops",
  138. "topics": [
  139. "conditionals",
  140. "integers",
  141. "mathematics",
  142. "strings"
  143. ],
  144. "unlocked_by": "hello-world",
  145. "uuid": "d916e4f8-fda1-41c0-ab24-79e8fc3f1272"
  146. },
  147. {
  148. "core": true,
  149. "difficulty": 3,
  150. "slug": "difference-of-squares",
  151. "topics": [
  152. "integers",
  153. "loops",
  154. "mathematics"
  155. ],
  156. "unlocked_by": null,
  157. "uuid": "b0da59c6-1b55-405c-b163-007ebf09f5e8"
  158. },
  159. {
  160. "core": true,
  161. "difficulty": 3,
  162. "slug": "secret-handshake",
  163. "topics": [
  164. "bitwise_operations",
  165. "conditionals",
  166. "cryptography",
  167. "enumerations",
  168. "integers",
  169. "loops",
  170. "mathematics",
  171. "transforming"
  172. ],
  173. "unlocked_by": null,
  174. "uuid": "71c7c174-7e2c-43c2-bdd6-7515fcb12a91"
  175. },
  176. {
  177. "core": false,
  178. "difficulty": 3,
  179. "slug": "perfect-numbers",
  180. "topics": [
  181. "enumerations",
  182. "exception_handling",
  183. "filtering",
  184. "integers",
  185. "mathematics"
  186. ],
  187. "unlocked_by": "difference-of-squares",
  188. "uuid": "d0dcc898-ec38-4822-9e3c-1a1829c9b2d9"
  189. },
  190. {
  191. "core": false,
  192. "difficulty": 3,
  193. "slug": "protein-translation",
  194. "topics": [
  195. "arrays",
  196. "conditionals",
  197. "loops",
  198. "strings"
  199. ],
  200. "unlocked_by": "two-fer",
  201. "uuid": "331073b3-bd1a-4868-b767-a64ce9fd9d97"
  202. },
  203. {
  204. "core": false,
  205. "difficulty": 4,
  206. "slug": "proverb",
  207. "topics": [
  208. "arrays",
  209. "loops",
  210. "strings"
  211. ],
  212. "unlocked_by": "two-fer",
  213. "uuid": "9906491b-a638-408d-86a4-4ad320a92658"
  214. },
  215. {
  216. "core": false,
  217. "difficulty": 4,
  218. "slug": "isbn-verifier",
  219. "topics": [
  220. "integers",
  221. "loops",
  222. "strings"
  223. ],
  224. "unlocked_by": "hamming",
  225. "uuid": "838bc1d7-b2de-482a-9bfc-c881b4ccb04c"
  226. },
  227. {
  228. "core": false,
  229. "difficulty": 4,
  230. "slug": "sum-of-multiples",
  231. "topics": [
  232. "arrays",
  233. "conditionals",
  234. "integers",
  235. "loops",
  236. "mathematics"
  237. ],
  238. "unlocked_by": "difference-of-squares",
  239. "uuid": "2f244afc-3e7b-4f89-92af-e2b427f4ef35"
  240. },
  241. {
  242. "core": false,
  243. "difficulty": 4,
  244. "slug": "luhn",
  245. "topics": [
  246. "algorithms",
  247. "booleans",
  248. "loops",
  249. "mathematics",
  250. "strings",
  251. "type_conversion"
  252. ],
  253. "unlocked_by": "hamming",
  254. "uuid": "5227a76c-8ecb-4e5f-b023-6af65a057c41"
  255. },
  256. {
  257. "core": true,
  258. "difficulty": 4,
  259. "slug": "matrix",
  260. "topics": [
  261. "arrays",
  262. "integers",
  263. "loops",
  264. "pattern_matching",
  265. "strings",
  266. "type_conversion"
  267. ],
  268. "unlocked_by": null,
  269. "uuid": "c1d4e0b4-6a0f-4be9-8222-345966621f53"
  270. },
  271. {
  272. "core": true,
  273. "difficulty": 4,
  274. "slug": "triangle",
  275. "topics": [
  276. "booleans",
  277. "classes",
  278. "exception_handling",
  279. "mathematics"
  280. ],
  281. "unlocked_by": null,
  282. "uuid": "ec268d8e-997b-4553-8c67-8bdfa1ecb888"
  283. },
  284. {
  285. "core": false,
  286. "difficulty": 4,
  287. "slug": "largest-series-product",
  288. "topics": [
  289. "integers",
  290. "loops",
  291. "mathematics",
  292. "strings",
  293. "type_conversion"
  294. ],
  295. "unlocked_by": "hamming",
  296. "uuid": "b7310b6e-435c-4d5f-b2bd-31e586d0f238"
  297. },
  298. {
  299. "core": false,
  300. "difficulty": 4,
  301. "slug": "sieve",
  302. "topics": [
  303. "algorithms",
  304. "integers",
  305. "lists",
  306. "loops",
  307. "mathematics"
  308. ],
  309. "unlocked_by": "difference-of-squares",
  310. "uuid": "6791d01f-bae4-4b63-ae76-86529ac49e36"
  311. },
  312. {
  313. "core": false,
  314. "difficulty": 4,
  315. "slug": "twelve-days",
  316. "topics": [
  317. "arrays",
  318. "conditionals",
  319. "loops",
  320. "strings"
  321. ],
  322. "unlocked_by": "two-fer",
  323. "uuid": "581afdbb-dfb6-4dc5-9554-a025b5469a3c"
  324. },
  325. {
  326. "core": true,
  327. "difficulty": 4,
  328. "slug": "rotational-cipher",
  329. "topics": [
  330. "cryptography",
  331. "integers",
  332. "strings"
  333. ],
  334. "unlocked_by": null,
  335. "uuid": "9eb41883-55ef-4681-b5ac-5c2259302772"
  336. },
  337. {
  338. "core": false,
  339. "difficulty": 4,
  340. "slug": "kindergarten-garden",
  341. "topics": [
  342. "arrays",
  343. "enumerations",
  344. "lists",
  345. "logic",
  346. "loops",
  347. "pattern_recognition",
  348. "strings"
  349. ],
  350. "unlocked_by": "matrix",
  351. "uuid": "0b92ffee-c092-4ab1-ad78-76c8cf80e1b5"
  352. },
  353. {
  354. "core": false,
  355. "difficulty": 4,
  356. "slug": "collatz-conjecture",
  357. "topics": [
  358. "conditionals",
  359. "exception_handling",
  360. "integers",
  361. "mathematics",
  362. "recursion"
  363. ],
  364. "unlocked_by": "triangle",
  365. "uuid": "1500d39a-c9d9-4d3a-9e77-fdc1837fc6ad"
  366. },
  367. {
  368. "core": false,
  369. "difficulty": 4,
  370. "slug": "nth-prime",
  371. "topics": [
  372. "arrays",
  373. "exception_handling",
  374. "integers",
  375. "lists",
  376. "loops"
  377. ],
  378. "unlocked_by": "triangle",
  379. "uuid": "2c69db99-648d-4bd7-8012-1fbdeff6ca0a"
  380. },
  381. {
  382. "core": true,
  383. "difficulty": 4,
  384. "slug": "saddle-points",
  385. "topics": [
  386. "arrays",
  387. "conditionals",
  388. "integers",
  389. "lists",
  390. "loops",
  391. "mathematics",
  392. "matrices",
  393. "sets"
  394. ],
  395. "unlocked_by": null,
  396. "uuid": "8dfc2f0d-1141-46e9-95e2-6f35ccf6f160"
  397. },
  398. {
  399. "core": false,
  400. "difficulty": 4,
  401. "slug": "error-handling",
  402. "topics": [
  403. "exception_handling",
  404. "optional_values"
  405. ],
  406. "unlocked_by": "triangle",
  407. "uuid": "846ae792-7ca7-43e1-b523-bb1ec9fa08eb"
  408. },
  409. {
  410. "core": false,
  411. "difficulty": 4,
  412. "slug": "diamond",
  413. "topics": [
  414. "arrays",
  415. "lists",
  416. "loops",
  417. "strings",
  418. "text_formatting"
  419. ],
  420. "unlocked_by": "two-fer",
  421. "uuid": "ecbd997b-86f4-4e11-9ff0-706ac2899415"
  422. },
  423. {
  424. "core": false,
  425. "difficulty": 4,
  426. "slug": "isogram",
  427. "topics": [
  428. "conditionals",
  429. "loops",
  430. "parsing",
  431. "strings"
  432. ],
  433. "unlocked_by": "hello-world",
  434. "uuid": "c3e89c7c-3a8a-4ddc-b653-9b0ff9e1d7d8"
  435. },
  436. {
  437. "core": false,
  438. "difficulty": 4,
  439. "slug": "variable-length-quantity",
  440. "topics": [
  441. "bitwise_operations",
  442. "conditionals",
  443. "exception_handling",
  444. "lists",
  445. "loops",
  446. "transforming"
  447. ],
  448. "unlocked_by": "secret-handshake",
  449. "uuid": "d8a2c7ba-2040-4cfe-ab15-f90b3b61dd89"
  450. },
  451. {
  452. "core": true,
  453. "difficulty": 5,
  454. "slug": "flatten-array",
  455. "topics": [
  456. "arrays",
  457. "lists",
  458. "loops",
  459. "recursion"
  460. ],
  461. "unlocked_by": null,
  462. "uuid": "a732a838-8170-458a-a85e-d6b4c46f97a1"
  463. },
  464. {
  465. "core": false,
  466. "difficulty": 5,
  467. "slug": "pig-latin",
  468. "topics": [
  469. "arrays",
  470. "lists",
  471. "strings",
  472. "transforming"
  473. ],
  474. "unlocked_by": "hello-world",
  475. "uuid": "38bc80ae-d842-4c04-a797-48edf322504d"
  476. },
  477. {
  478. "core": false,
  479. "difficulty": 5,
  480. "slug": "phone-number",
  481. "topics": [
  482. "conditionals",
  483. "pattern_matching",
  484. "regular_expressions",
  485. "strings"
  486. ],
  487. "unlocked_by": "hamming",
  488. "uuid": "5f9139e7-9fbb-496a-a0d7-a946283033de"
  489. },
  490. {
  491. "core": false,
  492. "difficulty": 5,
  493. "slug": "nucleotide-count",
  494. "topics": [
  495. "conditionals",
  496. "exception_handling",
  497. "integers",
  498. "maps",
  499. "parsing",
  500. "searching",
  501. "strings"
  502. ],
  503. "unlocked_by": "hamming",
  504. "uuid": "2d80fdfc-5bd7-4b67-9fbe-8ab820d89051"
  505. },
  506. {
  507. "core": true,
  508. "difficulty": 5,
  509. "slug": "word-count",
  510. "topics": [
  511. "conditionals",
  512. "integers",
  513. "loops",
  514. "maps",
  515. "strings"
  516. ],
  517. "unlocked_by": null,
  518. "uuid": "3603b770-87a5-4758-91f3-b4d1f9075bc1"
  519. },
  520. {
  521. "core": false,
  522. "difficulty": 5,
  523. "slug": "run-length-encoding",
  524. "topics": [
  525. "integers",
  526. "pattern_matching",
  527. "strings",
  528. "transforming"
  529. ],
  530. "unlocked_by": "rotational-cipher",
  531. "uuid": "4499a3f9-73a7-48bf-8753-d5b6abf588c9"
  532. },
  533. {
  534. "core": true,
  535. "difficulty": 5,
  536. "slug": "robot-name",
  537. "topics": [
  538. "pattern_matching",
  539. "randomness",
  540. "regular_expressions",
  541. "strings",
  542. "text_formatting"
  543. ],
  544. "unlocked_by": null,
  545. "uuid": "d7c2eed9-64c7-4c4a-b45d-c787d460337f"
  546. },
  547. {
  548. "core": false,
  549. "difficulty": 5,
  550. "slug": "prime-factors",
  551. "topics": [
  552. "arrays",
  553. "conditionals",
  554. "integers",
  555. "lists",
  556. "loops",
  557. "mathematics"
  558. ],
  559. "unlocked_by": "triangle",
  560. "uuid": "599c08ec-7338-46ed-99f8-a76f78f724e6"
  561. },
  562. {
  563. "core": false,
  564. "difficulty": 5,
  565. "slug": "allergies",
  566. "topics": [
  567. "booleans",
  568. "conditionals",
  569. "enumerations",
  570. "integers",
  571. "lists",
  572. "loops"
  573. ],
  574. "unlocked_by": "gigasecond",
  575. "uuid": "6a617ddb-04e3-451c-bb30-27ccd0be9125"
  576. },
  577. {
  578. "core": false,
  579. "difficulty": 5,
  580. "slug": "bob",
  581. "topics": [
  582. "booleans",
  583. "conditionals",
  584. "strings"
  585. ],
  586. "unlocked_by": "two-fer",
  587. "uuid": "34cd328c-cd96-492b-abd4-2b8716cdcd9a"
  588. },
  589. {
  590. "core": false,
  591. "difficulty": 5,
  592. "slug": "pascals-triangle",
  593. "topics": [
  594. "algorithms",
  595. "arrays",
  596. "exception_handling",
  597. "integers",
  598. "mathematics",
  599. "matrices"
  600. ],
  601. "unlocked_by": "matrix",
  602. "uuid": "d2a76905-1c8c-4b03-b4f7-4fbff19329f3"
  603. },
  604. {
  605. "core": false,
  606. "difficulty": 5,
  607. "slug": "bracket-push",
  608. "topics": [
  609. "stacks",
  610. "strings"
  611. ],
  612. "unlocked_by": "flatten-array",
  613. "uuid": "85aa50ac-0141-49eb-bc6f-62f3f7a97647"
  614. },
  615. {
  616. "core": false,
  617. "difficulty": 5,
  618. "slug": "series",
  619. "topics": [
  620. "conditionals",
  621. "lists",
  622. "loops",
  623. "strings",
  624. "type_conversion"
  625. ],
  626. "unlocked_by": "hamming",
  627. "uuid": "af80d7f4-c7d0-4d0b-9c30-09da120f6bb9"
  628. },
  629. {
  630. "core": false,
  631. "difficulty": 5,
  632. "slug": "atbash-cipher",
  633. "topics": [
  634. "cryptography",
  635. "security",
  636. "strings"
  637. ],
  638. "unlocked_by": "rotational-cipher",
  639. "uuid": "d36ce010-210f-4e9a-9d6c-cb933e0a59af"
  640. },
  641. {
  642. "core": false,
  643. "difficulty": 6,
  644. "slug": "alphametics",
  645. "topics": [
  646. "mathematics",
  647. "logic",
  648. "conditionals"
  649. ],
  650. "unlocked_by": "secret-handshake",
  651. "uuid": "0639a1f8-5af4-4877-95c1-5db8e97c30bf"
  652. },
  653. {
  654. "core": false,
  655. "difficulty": 6,
  656. "slug": "spiral-matrix",
  657. "topics": [
  658. "arrays",
  659. "integers",
  660. "loops",
  661. "mathematics",
  662. "matrices"
  663. ],
  664. "unlocked_by": "matrix",
  665. "uuid": "163fcc6b-c054-4232-a88b-0aded846a6eb"
  666. },
  667. {
  668. "core": false,
  669. "difficulty": 6,
  670. "slug": "roman-numerals",
  671. "topics": [
  672. "integers",
  673. "logic",
  674. "loops",
  675. "maps",
  676. "mathematics",
  677. "strings"
  678. ],
  679. "unlocked_by": "hamming",
  680. "uuid": "3e728cd4-5e5f-4c69-8a53-bc36d020fcdb"
  681. },
  682. {
  683. "core": false,
  684. "difficulty": 6,
  685. "slug": "transpose",
  686. "topics": [
  687. "arrays",
  688. "lists",
  689. "loops",
  690. "matrices",
  691. "strings",
  692. "text_formatting"
  693. ],
  694. "unlocked_by": "matrix",
  695. "uuid": "57b76837-4610-466f-9373-d5c2697625f1"
  696. },
  697. {
  698. "core": false,
  699. "difficulty": 6,
  700. "slug": "house",
  701. "topics": [
  702. "arrays",
  703. "conditionals",
  704. "loops",
  705. "strings",
  706. "text_formatting"
  707. ],
  708. "unlocked_by": "two-fer",
  709. "uuid": "6b51aca3-3451-4a64-ad7b-00b151d7548a"
  710. },
  711. {
  712. "core": false,
  713. "difficulty": 6,
  714. "slug": "food-chain",
  715. "topics": [
  716. "arrays",
  717. "lists",
  718. "strings"
  719. ],
  720. "unlocked_by": "two-fer",
  721. "uuid": "dd3e6fd6-5359-4978-acd7-c39374cead4d"
  722. },
  723. {
  724. "core": false,
  725. "difficulty": 6,
  726. "slug": "beer-song",
  727. "topics": [
  728. "conditionals",
  729. "loops",
  730. "strings",
  731. "text_formatting",
  732. "variables"
  733. ],
  734. "unlocked_by": "two-fer",
  735. "uuid": "56943095-de76-40bf-b42b-fa3e70f8df5e"
  736. },
  737. {
  738. "core": false,
  739. "difficulty": 6,
  740. "slug": "queen-attack",
  741. "topics": [
  742. "arrays",
  743. "classes",
  744. "conditionals",
  745. "games",
  746. "mathematics",
  747. "matrices"
  748. ],
  749. "unlocked_by": "scrabble-score",
  750. "uuid": "5404109e-3ed9-4691-8eaf-af8b36024a44"
  751. },
  752. {
  753. "core": false,
  754. "difficulty": 6,
  755. "slug": "etl",
  756. "topics": [
  757. "lists",
  758. "maps",
  759. "transforming"
  760. ],
  761. "unlocked_by": "word-count",
  762. "uuid": "76d28d97-75d3-47eb-bb77-3d347b76f1b6"
  763. },
  764. {
  765. "core": false,
  766. "difficulty": 6,
  767. "slug": "grade-school",
  768. "topics": [
  769. "conditionals",
  770. "lists",
  771. "maps",
  772. "sorting",
  773. "strings"
  774. ],
  775. "unlocked_by": "word-count",
  776. "uuid": "b4af5da1-601f-4b0f-bfb8-4a381851090c"
  777. },
  778. {
  779. "core": false,
  780. "difficulty": 6,
  781. "slug": "robot-simulator",
  782. "topics": [
  783. "classes",
  784. "enumerations",
  785. "logic",
  786. "loops"
  787. ],
  788. "unlocked_by": "secret-handshake",
  789. "uuid": "993bde9d-7774-4e7a-a381-9eee75f28ecb"
  790. },
  791. {
  792. "core": true,
  793. "difficulty": 6,
  794. "slug": "binary-search",
  795. "topics": [
  796. "recursion",
  797. "arrays",
  798. "searching",
  799. "generics"
  800. ],
  801. "unlocked_by": null,
  802. "uuid": "50136dc3-caf7-4fa1-b7bd-0cba1bea9176"
  803. },
  804. {
  805. "core": false,
  806. "difficulty": 6,
  807. "slug": "minesweeper",
  808. "topics": [
  809. "conditionals",
  810. "games",
  811. "integers",
  812. "lists",
  813. "matrices",
  814. "strings"
  815. ],
  816. "unlocked_by": "scrabble-score",
  817. "uuid": "416a1489-12af-4593-8540-0f55285c96b4"
  818. },
  819. {
  820. "core": false,
  821. "difficulty": 6,
  822. "slug": "wordy",
  823. "topics": [
  824. "exception_handling",
  825. "integers",
  826. "logic",
  827. "parsing",
  828. "pattern_matching",
  829. "regular_expressions",
  830. "strings",
  831. "transforming"
  832. ],
  833. "unlocked_by": "secret-handshake",
  834. "uuid": "3310a3cd-c0cb-45fa-8c51-600178be904a"
  835. },
  836. {
  837. "core": false,
  838. "difficulty": 6,
  839. "slug": "all-your-base",
  840. "topics": [
  841. "arrays",
  842. "conditionals",
  843. "exception_handling",
  844. "integers",
  845. "loops",
  846. "mathematics"
  847. ],
  848. "unlocked_by": "saddle-points",
  849. "uuid": "f7c2e4b5-1995-4dfe-b827-c9aff8ac5332"
  850. },
  851. {
  852. "core": true,
  853. "difficulty": 6,
  854. "slug": "bank-account",
  855. "topics": [
  856. "concurrency",
  857. "exception_handling",
  858. "integers"
  859. ],
  860. "unlocked_by": null,
  861. "uuid": "a242efc5-159d-492b-861d-12a1459fb334"
  862. },
  863. {
  864. "core": false,
  865. "difficulty": 6,
  866. "slug": "bowling",
  867. "topics": [
  868. "conditionals",
  869. "exception_handling",
  870. "games",
  871. "integers",
  872. "mathematics"
  873. ],
  874. "unlocked_by": "scrabble-score",
  875. "uuid": "4b3f7771-c642-4278-a3d9-2fb958f26361"
  876. },
  877. {
  878. "core": true,
  879. "difficulty": 6,
  880. "slug": "linked-list",
  881. "topics": [
  882. "algorithms",
  883. "generics",
  884. "lists"
  885. ],
  886. "unlocked_by": null,
  887. "uuid": "7ba5084d-3b75-4406-a0d7-87c26387f9c0"
  888. },
  889. {
  890. "core": false,
  891. "difficulty": 6,
  892. "slug": "tournament",
  893. "topics": [
  894. "loops",
  895. "maps",
  896. "parsing",
  897. "sorting",
  898. "text_formatting"
  899. ],
  900. "unlocked_by": "matrix",
  901. "uuid": "486d342e-c834-40fc-b691-a4dab3f790da"
  902. },
  903. {
  904. "core": false,
  905. "difficulty": 6,
  906. "slug": "parallel-letter-frequency",
  907. "topics": [
  908. "concurrency",
  909. "maps",
  910. "strings"
  911. ],
  912. "unlocked_by": "bank-account",
  913. "uuid": "38a405e8-619d-400f-b53c-2f06461fdf9d"
  914. },
  915. {
  916. "core": false,
  917. "difficulty": 6,
  918. "slug": "rail-fence-cipher",
  919. "topics": [
  920. "strings",
  921. "loops",
  922. "conditionals"
  923. ],
  924. "unlocked_by": "rotational-cipher",
  925. "uuid": "6e4ad4ed-cc02-4132-973d-b9163ba0ea3d"
  926. },
  927. {
  928. "core": false,
  929. "difficulty": 7,
  930. "slug": "two-bucket",
  931. "topics": [
  932. "algorithms",
  933. "loops",
  934. "conditionals",
  935. "mathematics"
  936. ],
  937. "unlocked_by": "triangle",
  938. "uuid": "210bf628-b385-443b-8329-3483cc6e8d7e"
  939. },
  940. {
  941. "core": false,
  942. "difficulty": 7,
  943. "slug": "anagram",
  944. "topics": [
  945. "arrays",
  946. "conditionals",
  947. "equality",
  948. "lists",
  949. "loops",
  950. "strings"
  951. ],
  952. "unlocked_by": "hello-world",
  953. "uuid": "fb10dc2f-0ba1-44b6-8365-5e48e86d1283"
  954. },
  955. {
  956. "core": false,
  957. "difficulty": 7,
  958. "slug": "sublist",
  959. "topics": [
  960. "enumeration",
  961. "generics",
  962. "lists",
  963. "loops",
  964. "searching"
  965. ],
  966. "unlocked_by": "linked-list",
  967. "uuid": "d2aedbd7-092a-43d0-8a5e-ae3ebd5b9c7f"
  968. },
  969. {
  970. "core": false,
  971. "difficulty": 7,
  972. "slug": "word-search",
  973. "topics": [
  974. "games",
  975. "logic",
  976. "matrices",
  977. "pattern_matching",
  978. "searching",
  979. "strings"
  980. ],
  981. "unlocked_by": "scrabble-score",
  982. "uuid": "b53bde52-cb5f-4d43-86ec-18aa509d62f9"
  983. },
  984. {
  985. "core": false,
  986. "difficulty": 7,
  987. "slug": "simple-linked-list",
  988. "topics": [
  989. "algorithms",
  990. "exception_handling",
  991. "generics",
  992. "lists"
  993. ],
  994. "unlocked_by": "linked-list",
  995. "uuid": "e3e5ffe5-cfc1-467e-a28a-da0302130144"
  996. },
  997. {
  998. "core": false,
  999. "difficulty": 7,
  1000. "slug": "binary-search-tree",
  1001. "topics": [
  1002. "generics",
  1003. "graphs",
  1004. "searching",
  1005. "sorting",
  1006. "trees"
  1007. ],
  1008. "unlocked_by": "binary-search",
  1009. "uuid": "0a2d18aa-7b5e-4401-a952-b93d2060694f"
  1010. },
  1011. {
  1012. "core": false,
  1013. "difficulty": 7,
  1014. "slug": "meetup",
  1015. "topics": [
  1016. "conditionals",
  1017. "dates",
  1018. "enumerations",
  1019. "loops"
  1020. ],
  1021. "unlocked_by": "gigasecond",
  1022. "uuid": "602511d5-7e89-4def-b072-4dd311816810"
  1023. },
  1024. {
  1025. "core": false,
  1026. "difficulty": 7,
  1027. "slug": "crypto-square",
  1028. "topics": [
  1029. "cryptography",
  1030. "lists",
  1031. "mathematics",
  1032. "security",
  1033. "strings",
  1034. "text_formatting"
  1035. ],
  1036. "unlocked_by": "rotational-cipher",
  1037. "uuid": "162bebdc-9bf2-43c0-8460-a91f5fc16147"
  1038. },
  1039. {
  1040. "core": false,
  1041. "difficulty": 7,
  1042. "slug": "markdown",
  1043. "topics": [
  1044. "strings",
  1045. "conditionals",
  1046. "pattern_matching",
  1047. "refactoring"
  1048. ],
  1049. "unlocked_by": "scrabble-score",
  1050. "uuid": "cc18f2e5-4e36-47d6-aa60-8ca5ff54019a"
  1051. },
  1052. {
  1053. "core": false,
  1054. "difficulty": 7,
  1055. "slug": "poker",
  1056. "topics": [
  1057. "games",
  1058. "parsing",
  1059. "sorting"
  1060. ],
  1061. "unlocked_by": "scrabble-score",
  1062. "uuid": "57eeac00-741c-4843-907a-51f0ac5ea4cb"
  1063. },
  1064. {
  1065. "core": false,
  1066. "difficulty": 7,
  1067. "slug": "clock",
  1068. "topics": [
  1069. "equality",
  1070. "integers",
  1071. "logic",
  1072. "object_oriented_programming",
  1073. "strings",
  1074. "time"
  1075. ],
  1076. "unlocked_by": "saddle-points",
  1077. "uuid": "97c8fcd4-85b6-41cb-9de2-b4e1b4951222"
  1078. },
  1079. {
  1080. "core": false,
  1081. "difficulty": 7,
  1082. "slug": "zipper",
  1083. "topics": [
  1084. "integer",
  1085. "nodes",
  1086. "tree",
  1087. "links"
  1088. ],
  1089. "unlocked_by": "linked-list",
  1090. "uuid": "25d2c7a5-1ec8-464a-b3de-ad1b27464ef1"
  1091. },
  1092. {
  1093. "core": false,
  1094. "difficulty": 7,
  1095. "slug": "go-counting",
  1096. "topics": [
  1097. "algorithms",
  1098. "loops",
  1099. "conditionals",
  1100. "games"
  1101. ],
  1102. "unlocked_by": "scrabble-score",
  1103. "uuid": "2e760ae2-fadd-4d31-9639-c4554e2826e9"
  1104. },
  1105. {
  1106. "core": false,
  1107. "difficulty": 7,
  1108. "slug": "dominoes",
  1109. "topics": [
  1110. "games",
  1111. "algorithms",
  1112. "lists",
  1113. "exception_handling"
  1114. ],
  1115. "unlocked_by": "scrabble-score",
  1116. "uuid": "8e3cb20e-623b-4b4d-8a91-d1a51c0911b5"
  1117. },
  1118. {
  1119. "core": false,
  1120. "difficulty": 8,
  1121. "slug": "ocr-numbers",
  1122. "topics": [
  1123. "exception_handling",
  1124. "lists",
  1125. "loops",
  1126. "parsing",
  1127. "strings"
  1128. ],
  1129. "unlocked_by": "robot-name",
  1130. "uuid": "5cbc6a67-3a53-4aad-ae68-ff469525437f"
  1131. },
  1132. {
  1133. "core": false,
  1134. "difficulty": 8,
  1135. "slug": "circular-buffer",
  1136. "topics": [
  1137. "classes",
  1138. "exception_handling",
  1139. "queues"
  1140. ],
  1141. "unlocked_by": "linked-list",
  1142. "uuid": "626dc25a-062c-4053-a8c1-788e4dc44ca0"
  1143. },
  1144. {
  1145. "core": false,
  1146. "difficulty": 8,
  1147. "slug": "rectangles",
  1148. "topics": [
  1149. "arrays",
  1150. "logic",
  1151. "pattern_recognition",
  1152. "strings"
  1153. ],
  1154. "unlocked_by": "robot-name",
  1155. "uuid": "64cda115-919a-4eef-9a45-9ec5d1af98cc"
  1156. },
  1157. {
  1158. "core": false,
  1159. "difficulty": 8,
  1160. "slug": "book-store",
  1161. "topics": [
  1162. "algorithms",
  1163. "floating_point_numbers",
  1164. "integers",
  1165. "lists",
  1166. "mathematics"
  1167. ],
  1168. "unlocked_by": "flatten-array",
  1169. "uuid": "e5f05d00-fe5b-4d78-b2fa-934c1c9afb32"
  1170. },
  1171. {
  1172. "core": false,
  1173. "difficulty": 8,
  1174. "slug": "diffie-hellman",
  1175. "topics": [
  1176. "algorithms",
  1177. "integers",
  1178. "transforming"
  1179. ],
  1180. "unlocked_by": "linked-list",
  1181. "uuid": "9b191b2f-b1a4-4c0e-b911-36666bff614d"
  1182. },
  1183. {
  1184. "core": false,
  1185. "difficulty": 8,
  1186. "slug": "simple-cipher",
  1187. "topics": [
  1188. "cryptography",
  1189. "exception_handling",
  1190. "mathematics",
  1191. "randomness",
  1192. "security",
  1193. "strings"
  1194. ],
  1195. "unlocked_by": "rotational-cipher",
  1196. "uuid": "f654831f-c34b-44f5-9dd5-054efbb486f2"
  1197. },
  1198. {
  1199. "core": false,
  1200. "difficulty": 8,
  1201. "slug": "complex-numbers",
  1202. "topics": [
  1203. "floating_point_numbers",
  1204. "mathematics"
  1205. ],
  1206. "unlocked_by": "triangle",
  1207. "uuid": "52d11278-0d65-4b5b-b387-1374fced3243"
  1208. },
  1209. {
  1210. "core": false,
  1211. "difficulty": 8,
  1212. "slug": "rational-numbers",
  1213. "topics": [
  1214. "floating_point_numbers",
  1215. "mathematics",
  1216. "algorithms"
  1217. ],
  1218. "unlocked_by": "triangle",
  1219. "uuid": "50ed54ce-3047-4590-9fda-0a7e9aeeba30"
  1220. },
  1221. {
  1222. "core": false,
  1223. "difficulty": 8,
  1224. "slug": "list-ops",
  1225. "topics": [
  1226. "filtering",
  1227. "functional_programming",
  1228. "generics",
  1229. "lists",
  1230. "loops"
  1231. ],
  1232. "unlocked_by": "linked-list",
  1233. "uuid": "a9836565-5c39-4285-b83a-53408be36ccc"
  1234. },
  1235. {
  1236. "core": false,
  1237. "difficulty": 8,
  1238. "slug": "change",
  1239. "topics": [
  1240. "algorithms",
  1241. "exception_handling",
  1242. "integers",
  1243. "lists"
  1244. ],
  1245. "unlocked_by": "flatten-array",
  1246. "uuid": "bac1f4bc-eea9-43c1-8e95-097347f5925e"
  1247. },
  1248. {
  1249. "core": false,
  1250. "difficulty": 8,
  1251. "slug": "palindrome-products",
  1252. "topics": [
  1253. "conditionals",
  1254. "integers",
  1255. "lists",
  1256. "loops",
  1257. "maps",
  1258. "mathematics"
  1259. ],
  1260. "unlocked_by": "saddle-points",
  1261. "uuid": "873c05de-b5f5-4c5b-97f0-d1ede8a82832"
  1262. },
  1263. {
  1264. "core": false,
  1265. "difficulty": 9,
  1266. "slug": "pythagorean-triplet",
  1267. "topics": [
  1268. "integer",
  1269. "lists",
  1270. "logic",
  1271. "mathematics"
  1272. ],
  1273. "unlocked_by": "triangle",
  1274. "uuid": "88505f95-89e5-4a08-8ed2-208eb818cdf1"
  1275. },
  1276. {
  1277. "core": false,
  1278. "difficulty": 9,
  1279. "slug": "forth",
  1280. "topics": [
  1281. "exception_handling",
  1282. "lists",
  1283. "logic",
  1284. "parsing",
  1285. "stacks",
  1286. "strings"
  1287. ],
  1288. "unlocked_by": "secret-handshake",
  1289. "uuid": "f0c0316d-3fb5-455e-952a-91161e7fb298"
  1290. },
  1291. {
  1292. "core": false,
  1293. "difficulty": 10,
  1294. "slug": "custom-set",
  1295. "topics": [
  1296. "equality",
  1297. "generics",
  1298. "sets"
  1299. ],
  1300. "unlocked_by": "linked-list",
  1301. "uuid": "377fe38b-08ad-4f3a-8118-a43c10f7b9b2"
  1302. },
  1303. {
  1304. "deprecated": true,
  1305. "slug": "accumulate",
  1306. "uuid": "e58c29d2-80a7-40ef-bed0-4a184ae35f34"
  1307. },
  1308. {
  1309. "deprecated": true,
  1310. "slug": "binary",
  1311. "uuid": "9ea6e0fa-b91d-4d17-ac8f-6d2dc30fdd44"
  1312. },
  1313. {
  1314. "deprecated": true,
  1315. "slug": "hexadecimal",
  1316. "uuid": "6fe53a08-c123-465d-864a-ef18217203c4"
  1317. },
  1318. {
  1319. "deprecated": true,
  1320. "slug": "octal",
  1321. "uuid": "14a29e82-f9b1-4662-b678-06992e306c01"
  1322. },
  1323. {
  1324. "deprecated": true,
  1325. "slug": "strain",
  1326. "uuid": "2d195cd9-1814-490a-8dd6-a2c676f1d4cd"
  1327. },
  1328. {
  1329. "deprecated": true,
  1330. "slug": "trinary",
  1331. "uuid": "ee3a8abe-6b19-4b47-9cf6-4d39ae915fb7"
  1332. }
  1333. ],
  1334. "foregone": [
  1335. "leap",
  1336. "grains",
  1337. "say"
  1338. ],
  1339. "language": "Java",
  1340. "solution_pattern": "reference"
  1341. }