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

config.json 29KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356
  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": 5,
  644. "slug": "grep",
  645. "topics": [
  646. "pattern_matching",
  647. "strings",
  648. "files",
  649. "filtering",
  650. "searching"
  651. ],
  652. "unlocked_by": "robot-name",
  653. "uuid": "9c15ddab-7b52-43d4-b38c-0bf635b363c3"
  654. },
  655. {
  656. "core": false,
  657. "difficulty": 6,
  658. "slug": "alphametics",
  659. "topics": [
  660. "mathematics",
  661. "logic",
  662. "conditionals"
  663. ],
  664. "unlocked_by": "secret-handshake",
  665. "uuid": "0639a1f8-5af4-4877-95c1-5db8e97c30bf"
  666. },
  667. {
  668. "core": false,
  669. "difficulty": 6,
  670. "slug": "spiral-matrix",
  671. "topics": [
  672. "arrays",
  673. "integers",
  674. "loops",
  675. "mathematics",
  676. "matrices"
  677. ],
  678. "unlocked_by": "matrix",
  679. "uuid": "163fcc6b-c054-4232-a88b-0aded846a6eb"
  680. },
  681. {
  682. "core": false,
  683. "difficulty": 6,
  684. "slug": "roman-numerals",
  685. "topics": [
  686. "integers",
  687. "logic",
  688. "loops",
  689. "maps",
  690. "mathematics",
  691. "strings"
  692. ],
  693. "unlocked_by": "hamming",
  694. "uuid": "3e728cd4-5e5f-4c69-8a53-bc36d020fcdb"
  695. },
  696. {
  697. "core": false,
  698. "difficulty": 6,
  699. "slug": "transpose",
  700. "topics": [
  701. "arrays",
  702. "lists",
  703. "loops",
  704. "matrices",
  705. "strings",
  706. "text_formatting"
  707. ],
  708. "unlocked_by": "matrix",
  709. "uuid": "57b76837-4610-466f-9373-d5c2697625f1"
  710. },
  711. {
  712. "core": false,
  713. "difficulty": 6,
  714. "slug": "house",
  715. "topics": [
  716. "arrays",
  717. "conditionals",
  718. "loops",
  719. "strings",
  720. "text_formatting"
  721. ],
  722. "unlocked_by": "two-fer",
  723. "uuid": "6b51aca3-3451-4a64-ad7b-00b151d7548a"
  724. },
  725. {
  726. "core": false,
  727. "difficulty": 6,
  728. "slug": "food-chain",
  729. "topics": [
  730. "arrays",
  731. "lists",
  732. "strings"
  733. ],
  734. "unlocked_by": "two-fer",
  735. "uuid": "dd3e6fd6-5359-4978-acd7-c39374cead4d"
  736. },
  737. {
  738. "core": false,
  739. "difficulty": 6,
  740. "slug": "beer-song",
  741. "topics": [
  742. "conditionals",
  743. "loops",
  744. "strings",
  745. "text_formatting",
  746. "variables"
  747. ],
  748. "unlocked_by": "two-fer",
  749. "uuid": "56943095-de76-40bf-b42b-fa3e70f8df5e"
  750. },
  751. {
  752. "core": false,
  753. "difficulty": 6,
  754. "slug": "queen-attack",
  755. "topics": [
  756. "arrays",
  757. "classes",
  758. "conditionals",
  759. "games",
  760. "mathematics",
  761. "matrices"
  762. ],
  763. "unlocked_by": "scrabble-score",
  764. "uuid": "5404109e-3ed9-4691-8eaf-af8b36024a44"
  765. },
  766. {
  767. "core": false,
  768. "difficulty": 6,
  769. "slug": "etl",
  770. "topics": [
  771. "lists",
  772. "maps",
  773. "transforming"
  774. ],
  775. "unlocked_by": "word-count",
  776. "uuid": "76d28d97-75d3-47eb-bb77-3d347b76f1b6"
  777. },
  778. {
  779. "core": false,
  780. "difficulty": 6,
  781. "slug": "grade-school",
  782. "topics": [
  783. "conditionals",
  784. "lists",
  785. "maps",
  786. "sorting",
  787. "strings"
  788. ],
  789. "unlocked_by": "word-count",
  790. "uuid": "b4af5da1-601f-4b0f-bfb8-4a381851090c"
  791. },
  792. {
  793. "core": false,
  794. "difficulty": 6,
  795. "slug": "robot-simulator",
  796. "topics": [
  797. "classes",
  798. "enumerations",
  799. "logic",
  800. "loops"
  801. ],
  802. "unlocked_by": "secret-handshake",
  803. "uuid": "993bde9d-7774-4e7a-a381-9eee75f28ecb"
  804. },
  805. {
  806. "core": true,
  807. "difficulty": 6,
  808. "slug": "binary-search",
  809. "topics": [
  810. "recursion",
  811. "arrays",
  812. "searching",
  813. "generics"
  814. ],
  815. "unlocked_by": null,
  816. "uuid": "50136dc3-caf7-4fa1-b7bd-0cba1bea9176"
  817. },
  818. {
  819. "core": false,
  820. "difficulty": 6,
  821. "slug": "minesweeper",
  822. "topics": [
  823. "conditionals",
  824. "games",
  825. "integers",
  826. "lists",
  827. "matrices",
  828. "strings"
  829. ],
  830. "unlocked_by": "scrabble-score",
  831. "uuid": "416a1489-12af-4593-8540-0f55285c96b4"
  832. },
  833. {
  834. "core": false,
  835. "difficulty": 6,
  836. "slug": "wordy",
  837. "topics": [
  838. "exception_handling",
  839. "integers",
  840. "logic",
  841. "parsing",
  842. "pattern_matching",
  843. "regular_expressions",
  844. "strings",
  845. "transforming"
  846. ],
  847. "unlocked_by": "secret-handshake",
  848. "uuid": "3310a3cd-c0cb-45fa-8c51-600178be904a"
  849. },
  850. {
  851. "core": false,
  852. "difficulty": 6,
  853. "slug": "all-your-base",
  854. "topics": [
  855. "arrays",
  856. "conditionals",
  857. "exception_handling",
  858. "integers",
  859. "loops",
  860. "mathematics"
  861. ],
  862. "unlocked_by": "saddle-points",
  863. "uuid": "f7c2e4b5-1995-4dfe-b827-c9aff8ac5332"
  864. },
  865. {
  866. "core": true,
  867. "difficulty": 6,
  868. "slug": "bank-account",
  869. "topics": [
  870. "concurrency",
  871. "exception_handling",
  872. "integers"
  873. ],
  874. "unlocked_by": null,
  875. "uuid": "a242efc5-159d-492b-861d-12a1459fb334"
  876. },
  877. {
  878. "core": false,
  879. "difficulty": 6,
  880. "slug": "bowling",
  881. "topics": [
  882. "conditionals",
  883. "exception_handling",
  884. "games",
  885. "integers",
  886. "mathematics"
  887. ],
  888. "unlocked_by": "scrabble-score",
  889. "uuid": "4b3f7771-c642-4278-a3d9-2fb958f26361"
  890. },
  891. {
  892. "core": true,
  893. "difficulty": 6,
  894. "slug": "linked-list",
  895. "topics": [
  896. "algorithms",
  897. "generics",
  898. "lists"
  899. ],
  900. "unlocked_by": null,
  901. "uuid": "7ba5084d-3b75-4406-a0d7-87c26387f9c0"
  902. },
  903. {
  904. "core": false,
  905. "difficulty": 6,
  906. "slug": "tournament",
  907. "topics": [
  908. "loops",
  909. "maps",
  910. "parsing",
  911. "sorting",
  912. "text_formatting"
  913. ],
  914. "unlocked_by": "matrix",
  915. "uuid": "486d342e-c834-40fc-b691-a4dab3f790da"
  916. },
  917. {
  918. "core": false,
  919. "difficulty": 6,
  920. "slug": "parallel-letter-frequency",
  921. "topics": [
  922. "concurrency",
  923. "maps",
  924. "strings"
  925. ],
  926. "unlocked_by": "bank-account",
  927. "uuid": "38a405e8-619d-400f-b53c-2f06461fdf9d"
  928. },
  929. {
  930. "core": false,
  931. "difficulty": 6,
  932. "slug": "rail-fence-cipher",
  933. "topics": [
  934. "strings",
  935. "loops",
  936. "conditionals"
  937. ],
  938. "unlocked_by": "rotational-cipher",
  939. "uuid": "6e4ad4ed-cc02-4132-973d-b9163ba0ea3d"
  940. },
  941. {
  942. "core": false,
  943. "difficulty": 7,
  944. "slug": "two-bucket",
  945. "topics": [
  946. "algorithms",
  947. "loops",
  948. "conditionals",
  949. "mathematics"
  950. ],
  951. "unlocked_by": "triangle",
  952. "uuid": "210bf628-b385-443b-8329-3483cc6e8d7e"
  953. },
  954. {
  955. "core": false,
  956. "difficulty": 7,
  957. "slug": "anagram",
  958. "topics": [
  959. "arrays",
  960. "conditionals",
  961. "equality",
  962. "lists",
  963. "loops",
  964. "strings"
  965. ],
  966. "unlocked_by": "hello-world",
  967. "uuid": "fb10dc2f-0ba1-44b6-8365-5e48e86d1283"
  968. },
  969. {
  970. "core": false,
  971. "difficulty": 7,
  972. "slug": "sublist",
  973. "topics": [
  974. "enumeration",
  975. "generics",
  976. "lists",
  977. "loops",
  978. "searching"
  979. ],
  980. "unlocked_by": "linked-list",
  981. "uuid": "d2aedbd7-092a-43d0-8a5e-ae3ebd5b9c7f"
  982. },
  983. {
  984. "core": false,
  985. "difficulty": 7,
  986. "slug": "word-search",
  987. "topics": [
  988. "games",
  989. "logic",
  990. "matrices",
  991. "pattern_matching",
  992. "searching",
  993. "strings"
  994. ],
  995. "unlocked_by": "scrabble-score",
  996. "uuid": "b53bde52-cb5f-4d43-86ec-18aa509d62f9"
  997. },
  998. {
  999. "core": false,
  1000. "difficulty": 7,
  1001. "slug": "simple-linked-list",
  1002. "topics": [
  1003. "algorithms",
  1004. "exception_handling",
  1005. "generics",
  1006. "lists"
  1007. ],
  1008. "unlocked_by": "linked-list",
  1009. "uuid": "e3e5ffe5-cfc1-467e-a28a-da0302130144"
  1010. },
  1011. {
  1012. "core": false,
  1013. "difficulty": 7,
  1014. "slug": "binary-search-tree",
  1015. "topics": [
  1016. "generics",
  1017. "graphs",
  1018. "searching",
  1019. "sorting",
  1020. "trees"
  1021. ],
  1022. "unlocked_by": "binary-search",
  1023. "uuid": "0a2d18aa-7b5e-4401-a952-b93d2060694f"
  1024. },
  1025. {
  1026. "core": false,
  1027. "difficulty": 7,
  1028. "slug": "meetup",
  1029. "topics": [
  1030. "conditionals",
  1031. "dates",
  1032. "enumerations",
  1033. "loops"
  1034. ],
  1035. "unlocked_by": "gigasecond",
  1036. "uuid": "602511d5-7e89-4def-b072-4dd311816810"
  1037. },
  1038. {
  1039. "core": false,
  1040. "difficulty": 7,
  1041. "slug": "crypto-square",
  1042. "topics": [
  1043. "cryptography",
  1044. "lists",
  1045. "mathematics",
  1046. "security",
  1047. "strings",
  1048. "text_formatting"
  1049. ],
  1050. "unlocked_by": "rotational-cipher",
  1051. "uuid": "162bebdc-9bf2-43c0-8460-a91f5fc16147"
  1052. },
  1053. {
  1054. "core": false,
  1055. "difficulty": 7,
  1056. "slug": "markdown",
  1057. "topics": [
  1058. "strings",
  1059. "conditionals",
  1060. "pattern_matching",
  1061. "refactoring"
  1062. ],
  1063. "unlocked_by": "scrabble-score",
  1064. "uuid": "cc18f2e5-4e36-47d6-aa60-8ca5ff54019a"
  1065. },
  1066. {
  1067. "core": false,
  1068. "difficulty": 7,
  1069. "slug": "poker",
  1070. "topics": [
  1071. "games",
  1072. "parsing",
  1073. "sorting"
  1074. ],
  1075. "unlocked_by": "scrabble-score",
  1076. "uuid": "57eeac00-741c-4843-907a-51f0ac5ea4cb"
  1077. },
  1078. {
  1079. "core": false,
  1080. "difficulty": 7,
  1081. "slug": "clock",
  1082. "topics": [
  1083. "equality",
  1084. "integers",
  1085. "logic",
  1086. "object_oriented_programming",
  1087. "strings",
  1088. "time"
  1089. ],
  1090. "unlocked_by": "saddle-points",
  1091. "uuid": "97c8fcd4-85b6-41cb-9de2-b4e1b4951222"
  1092. },
  1093. {
  1094. "core": false,
  1095. "difficulty": 7,
  1096. "slug": "zipper",
  1097. "topics": [
  1098. "integer",
  1099. "nodes",
  1100. "tree",
  1101. "links"
  1102. ],
  1103. "unlocked_by": "linked-list",
  1104. "uuid": "25d2c7a5-1ec8-464a-b3de-ad1b27464ef1"
  1105. },
  1106. {
  1107. "core": false,
  1108. "difficulty": 7,
  1109. "slug": "go-counting",
  1110. "topics": [
  1111. "algorithms",
  1112. "loops",
  1113. "conditionals",
  1114. "games"
  1115. ],
  1116. "unlocked_by": "scrabble-score",
  1117. "uuid": "2e760ae2-fadd-4d31-9639-c4554e2826e9"
  1118. },
  1119. {
  1120. "core": false,
  1121. "difficulty": 7,
  1122. "slug": "dominoes",
  1123. "topics": [
  1124. "games",
  1125. "algorithms",
  1126. "lists",
  1127. "exception_handling"
  1128. ],
  1129. "unlocked_by": "scrabble-score",
  1130. "uuid": "8e3cb20e-623b-4b4d-8a91-d1a51c0911b5"
  1131. },
  1132. {
  1133. "core": false,
  1134. "difficulty": 8,
  1135. "slug": "ocr-numbers",
  1136. "topics": [
  1137. "exception_handling",
  1138. "lists",
  1139. "loops",
  1140. "parsing",
  1141. "strings"
  1142. ],
  1143. "unlocked_by": "robot-name",
  1144. "uuid": "5cbc6a67-3a53-4aad-ae68-ff469525437f"
  1145. },
  1146. {
  1147. "core": false,
  1148. "difficulty": 8,
  1149. "slug": "circular-buffer",
  1150. "topics": [
  1151. "classes",
  1152. "exception_handling",
  1153. "queues"
  1154. ],
  1155. "unlocked_by": "linked-list",
  1156. "uuid": "626dc25a-062c-4053-a8c1-788e4dc44ca0"
  1157. },
  1158. {
  1159. "core": false,
  1160. "difficulty": 8,
  1161. "slug": "rectangles",
  1162. "topics": [
  1163. "arrays",
  1164. "logic",
  1165. "pattern_recognition",
  1166. "strings"
  1167. ],
  1168. "unlocked_by": "robot-name",
  1169. "uuid": "64cda115-919a-4eef-9a45-9ec5d1af98cc"
  1170. },
  1171. {
  1172. "core": false,
  1173. "difficulty": 8,
  1174. "slug": "book-store",
  1175. "topics": [
  1176. "algorithms",
  1177. "floating_point_numbers",
  1178. "integers",
  1179. "lists",
  1180. "mathematics"
  1181. ],
  1182. "unlocked_by": "flatten-array",
  1183. "uuid": "e5f05d00-fe5b-4d78-b2fa-934c1c9afb32"
  1184. },
  1185. {
  1186. "core": false,
  1187. "difficulty": 8,
  1188. "slug": "diffie-hellman",
  1189. "topics": [
  1190. "algorithms",
  1191. "integers",
  1192. "transforming"
  1193. ],
  1194. "unlocked_by": "linked-list",
  1195. "uuid": "9b191b2f-b1a4-4c0e-b911-36666bff614d"
  1196. },
  1197. {
  1198. "core": false,
  1199. "difficulty": 8,
  1200. "slug": "simple-cipher",
  1201. "topics": [
  1202. "cryptography",
  1203. "exception_handling",
  1204. "mathematics",
  1205. "randomness",
  1206. "security",
  1207. "strings"
  1208. ],
  1209. "unlocked_by": "rotational-cipher",
  1210. "uuid": "f654831f-c34b-44f5-9dd5-054efbb486f2"
  1211. },
  1212. {
  1213. "core": false,
  1214. "difficulty": 8,
  1215. "slug": "complex-numbers",
  1216. "topics": [
  1217. "floating_point_numbers",
  1218. "mathematics"
  1219. ],
  1220. "unlocked_by": "triangle",
  1221. "uuid": "52d11278-0d65-4b5b-b387-1374fced3243"
  1222. },
  1223. {
  1224. "core": false,
  1225. "difficulty": 8,
  1226. "slug": "rational-numbers",
  1227. "topics": [
  1228. "floating_point_numbers",
  1229. "mathematics",
  1230. "algorithms"
  1231. ],
  1232. "unlocked_by": "triangle",
  1233. "uuid": "50ed54ce-3047-4590-9fda-0a7e9aeeba30"
  1234. },
  1235. {
  1236. "core": false,
  1237. "difficulty": 8,
  1238. "slug": "list-ops",
  1239. "topics": [
  1240. "filtering",
  1241. "functional_programming",
  1242. "generics",
  1243. "lists",
  1244. "loops"
  1245. ],
  1246. "unlocked_by": "linked-list",
  1247. "uuid": "a9836565-5c39-4285-b83a-53408be36ccc"
  1248. },
  1249. {
  1250. "core": false,
  1251. "difficulty": 8,
  1252. "slug": "change",
  1253. "topics": [
  1254. "algorithms",
  1255. "exception_handling",
  1256. "integers",
  1257. "lists"
  1258. ],
  1259. "unlocked_by": "flatten-array",
  1260. "uuid": "bac1f4bc-eea9-43c1-8e95-097347f5925e"
  1261. },
  1262. {
  1263. "core": false,
  1264. "difficulty": 8,
  1265. "slug": "palindrome-products",
  1266. "topics": [
  1267. "conditionals",
  1268. "integers",
  1269. "lists",
  1270. "loops",
  1271. "maps",
  1272. "mathematics"
  1273. ],
  1274. "unlocked_by": "saddle-points",
  1275. "uuid": "873c05de-b5f5-4c5b-97f0-d1ede8a82832"
  1276. },
  1277. {
  1278. "core": false,
  1279. "difficulty": 9,
  1280. "slug": "pythagorean-triplet",
  1281. "topics": [
  1282. "integer",
  1283. "lists",
  1284. "logic",
  1285. "mathematics"
  1286. ],
  1287. "unlocked_by": "triangle",
  1288. "uuid": "88505f95-89e5-4a08-8ed2-208eb818cdf1"
  1289. },
  1290. {
  1291. "core": false,
  1292. "difficulty": 9,
  1293. "slug": "forth",
  1294. "topics": [
  1295. "exception_handling",
  1296. "lists",
  1297. "logic",
  1298. "parsing",
  1299. "stacks",
  1300. "strings"
  1301. ],
  1302. "unlocked_by": "secret-handshake",
  1303. "uuid": "f0c0316d-3fb5-455e-952a-91161e7fb298"
  1304. },
  1305. {
  1306. "core": false,
  1307. "difficulty": 10,
  1308. "slug": "custom-set",
  1309. "topics": [
  1310. "equality",
  1311. "generics",
  1312. "sets"
  1313. ],
  1314. "unlocked_by": "linked-list",
  1315. "uuid": "377fe38b-08ad-4f3a-8118-a43c10f7b9b2"
  1316. },
  1317. {
  1318. "deprecated": true,
  1319. "slug": "accumulate",
  1320. "uuid": "e58c29d2-80a7-40ef-bed0-4a184ae35f34"
  1321. },
  1322. {
  1323. "deprecated": true,
  1324. "slug": "binary",
  1325. "uuid": "9ea6e0fa-b91d-4d17-ac8f-6d2dc30fdd44"
  1326. },
  1327. {
  1328. "deprecated": true,
  1329. "slug": "hexadecimal",
  1330. "uuid": "6fe53a08-c123-465d-864a-ef18217203c4"
  1331. },
  1332. {
  1333. "deprecated": true,
  1334. "slug": "octal",
  1335. "uuid": "14a29e82-f9b1-4662-b678-06992e306c01"
  1336. },
  1337. {
  1338. "deprecated": true,
  1339. "slug": "strain",
  1340. "uuid": "2d195cd9-1814-490a-8dd6-a2c676f1d4cd"
  1341. },
  1342. {
  1343. "deprecated": true,
  1344. "slug": "trinary",
  1345. "uuid": "ee3a8abe-6b19-4b47-9cf6-4d39ae915fb7"
  1346. }
  1347. ],
  1348. "foregone": [
  1349. "leap",
  1350. "grains",
  1351. "say"
  1352. ],
  1353. "language": "Java",
  1354. "solution_pattern": "reference"
  1355. }