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

config.json 24KB

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