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

config.json 27KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278
  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": "rna-transcription",
  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": "diamond",
  402. "topics": [
  403. "arrays",
  404. "lists",
  405. "loops",
  406. "strings",
  407. "text_formatting"
  408. ],
  409. "unlocked_by": "two-fer",
  410. "uuid": "ecbd997b-86f4-4e11-9ff0-706ac2899415"
  411. },
  412. {
  413. "core": false,
  414. "difficulty": 4,
  415. "slug": "isogram",
  416. "topics": [
  417. "conditionals",
  418. "loops",
  419. "parsing",
  420. "strings"
  421. ],
  422. "unlocked_by": "hello-world",
  423. "uuid": "c3e89c7c-3a8a-4ddc-b653-9b0ff9e1d7d8"
  424. },
  425. {
  426. "core": true,
  427. "difficulty": 5,
  428. "slug": "flatten-array",
  429. "topics": [
  430. "arrays",
  431. "lists",
  432. "loops",
  433. "recursion"
  434. ],
  435. "unlocked_by": null,
  436. "uuid": "a732a838-8170-458a-a85e-d6b4c46f97a1"
  437. },
  438. {
  439. "core": false,
  440. "difficulty": 5,
  441. "slug": "pig-latin",
  442. "topics": [
  443. "arrays",
  444. "lists",
  445. "strings",
  446. "transforming"
  447. ],
  448. "unlocked_by": "hello-world",
  449. "uuid": "38bc80ae-d842-4c04-a797-48edf322504d"
  450. },
  451. {
  452. "core": false,
  453. "difficulty": 5,
  454. "slug": "phone-number",
  455. "topics": [
  456. "conditionals",
  457. "pattern_matching",
  458. "regular_expressions",
  459. "strings"
  460. ],
  461. "unlocked_by": "hamming",
  462. "uuid": "5f9139e7-9fbb-496a-a0d7-a946283033de"
  463. },
  464. {
  465. "core": false,
  466. "difficulty": 5,
  467. "slug": "nucleotide-count",
  468. "topics": [
  469. "conditionals",
  470. "exception_handling",
  471. "integers",
  472. "maps",
  473. "parsing",
  474. "searching",
  475. "strings"
  476. ],
  477. "unlocked_by": "hamming",
  478. "uuid": "2d80fdfc-5bd7-4b67-9fbe-8ab820d89051"
  479. },
  480. {
  481. "core": true,
  482. "difficulty": 5,
  483. "slug": "word-count",
  484. "topics": [
  485. "conditionals",
  486. "integers",
  487. "loops",
  488. "maps",
  489. "strings"
  490. ],
  491. "unlocked_by": null,
  492. "uuid": "3603b770-87a5-4758-91f3-b4d1f9075bc1"
  493. },
  494. {
  495. "core": false,
  496. "difficulty": 5,
  497. "slug": "run-length-encoding",
  498. "topics": [
  499. "integers",
  500. "pattern_matching",
  501. "strings",
  502. "transforming"
  503. ],
  504. "unlocked_by": "rotational-cipher",
  505. "uuid": "4499a3f9-73a7-48bf-8753-d5b6abf588c9"
  506. },
  507. {
  508. "core": true,
  509. "difficulty": 5,
  510. "slug": "robot-name",
  511. "topics": [
  512. "pattern_matching",
  513. "randomness",
  514. "regular_expressions",
  515. "strings",
  516. "text_formatting"
  517. ],
  518. "unlocked_by": null,
  519. "uuid": "d7c2eed9-64c7-4c4a-b45d-c787d460337f"
  520. },
  521. {
  522. "core": false,
  523. "difficulty": 5,
  524. "slug": "prime-factors",
  525. "topics": [
  526. "arrays",
  527. "conditionals",
  528. "integers",
  529. "lists",
  530. "loops",
  531. "mathematics"
  532. ],
  533. "unlocked_by": "triangle",
  534. "uuid": "599c08ec-7338-46ed-99f8-a76f78f724e6"
  535. },
  536. {
  537. "core": false,
  538. "difficulty": 5,
  539. "slug": "allergies",
  540. "topics": [
  541. "booleans",
  542. "conditionals",
  543. "enumerations",
  544. "integers",
  545. "lists",
  546. "loops"
  547. ],
  548. "unlocked_by": "gigasecond",
  549. "uuid": "6a617ddb-04e3-451c-bb30-27ccd0be9125"
  550. },
  551. {
  552. "core": false,
  553. "difficulty": 5,
  554. "slug": "bob",
  555. "topics": [
  556. "booleans",
  557. "conditionals",
  558. "strings"
  559. ],
  560. "unlocked_by": "two-fer",
  561. "uuid": "34cd328c-cd96-492b-abd4-2b8716cdcd9a"
  562. },
  563. {
  564. "core": false,
  565. "difficulty": 5,
  566. "slug": "pascals-triangle",
  567. "topics": [
  568. "algorithms",
  569. "arrays",
  570. "exception_handling",
  571. "integers",
  572. "mathematics",
  573. "matrices"
  574. ],
  575. "unlocked_by": "matrix",
  576. "uuid": "d2a76905-1c8c-4b03-b4f7-4fbff19329f3"
  577. },
  578. {
  579. "core": false,
  580. "difficulty": 5,
  581. "slug": "bracket-push",
  582. "topics": [
  583. "stacks",
  584. "strings"
  585. ],
  586. "unlocked_by": "flatten-array",
  587. "uuid": "85aa50ac-0141-49eb-bc6f-62f3f7a97647"
  588. },
  589. {
  590. "core": false,
  591. "difficulty": 5,
  592. "slug": "series",
  593. "topics": [
  594. "conditionals",
  595. "lists",
  596. "loops",
  597. "strings",
  598. "type_conversion"
  599. ],
  600. "unlocked_by": "hamming",
  601. "uuid": "af80d7f4-c7d0-4d0b-9c30-09da120f6bb9"
  602. },
  603. {
  604. "core": false,
  605. "difficulty": 5,
  606. "slug": "atbash-cipher",
  607. "topics": [
  608. "cryptography",
  609. "security",
  610. "strings"
  611. ],
  612. "unlocked_by": "rotational-cipher",
  613. "uuid": "d36ce010-210f-4e9a-9d6c-cb933e0a59af"
  614. },
  615. {
  616. "core": false,
  617. "difficulty": 5,
  618. "slug": "two-bucket",
  619. "topics": [
  620. "algorithms",
  621. "loops",
  622. "conditionals",
  623. "mathematics"
  624. ],
  625. "unlocked_by": "triangle",
  626. "uuid": "210bf628-b385-443b-8329-3483cc6e8d7e"
  627. },
  628. {
  629. "core": false,
  630. "difficulty": 6,
  631. "slug": "alphametics",
  632. "topics": [
  633. "mathematics",
  634. "logic",
  635. "conditionals"
  636. ],
  637. "unlocked_by": "secret-handshake",
  638. "uuid": "0639a1f8-5af4-4877-95c1-5db8e97c30bf"
  639. },
  640. {
  641. "core": false,
  642. "difficulty": 6,
  643. "slug": "spiral-matrix",
  644. "topics": [
  645. "arrays",
  646. "integers",
  647. "loops",
  648. "mathematics",
  649. "matrices"
  650. ],
  651. "unlocked_by": "matrix",
  652. "uuid": "163fcc6b-c054-4232-a88b-0aded846a6eb"
  653. },
  654. {
  655. "core": false,
  656. "difficulty": 6,
  657. "slug": "roman-numerals",
  658. "topics": [
  659. "integers",
  660. "logic",
  661. "loops",
  662. "maps",
  663. "mathematics",
  664. "strings"
  665. ],
  666. "unlocked_by": "hamming",
  667. "uuid": "3e728cd4-5e5f-4c69-8a53-bc36d020fcdb"
  668. },
  669. {
  670. "core": false,
  671. "difficulty": 6,
  672. "slug": "transpose",
  673. "topics": [
  674. "arrays",
  675. "lists",
  676. "loops",
  677. "matrices",
  678. "strings",
  679. "text_formatting"
  680. ],
  681. "unlocked_by": "matrix",
  682. "uuid": "57b76837-4610-466f-9373-d5c2697625f1"
  683. },
  684. {
  685. "core": false,
  686. "difficulty": 6,
  687. "slug": "house",
  688. "topics": [
  689. "arrays",
  690. "conditionals",
  691. "loops",
  692. "strings",
  693. "text_formatting"
  694. ],
  695. "unlocked_by": "two-fer",
  696. "uuid": "6b51aca3-3451-4a64-ad7b-00b151d7548a"
  697. },
  698. {
  699. "core": false,
  700. "difficulty": 6,
  701. "slug": "food-chain",
  702. "topics": [
  703. "arrays",
  704. "lists",
  705. "strings"
  706. ],
  707. "unlocked_by": "two-fer",
  708. "uuid": "dd3e6fd6-5359-4978-acd7-c39374cead4d"
  709. },
  710. {
  711. "core": false,
  712. "difficulty": 6,
  713. "slug": "beer-song",
  714. "topics": [
  715. "conditionals",
  716. "loops",
  717. "strings",
  718. "text_formatting",
  719. "variables"
  720. ],
  721. "unlocked_by": "two-fer",
  722. "uuid": "56943095-de76-40bf-b42b-fa3e70f8df5e"
  723. },
  724. {
  725. "core": false,
  726. "difficulty": 6,
  727. "slug": "queen-attack",
  728. "topics": [
  729. "arrays",
  730. "classes",
  731. "conditionals",
  732. "games",
  733. "mathematics",
  734. "matrices"
  735. ],
  736. "unlocked_by": "scrabble-score",
  737. "uuid": "5404109e-3ed9-4691-8eaf-af8b36024a44"
  738. },
  739. {
  740. "core": false,
  741. "difficulty": 6,
  742. "slug": "etl",
  743. "topics": [
  744. "lists",
  745. "maps",
  746. "transforming"
  747. ],
  748. "unlocked_by": "word-count",
  749. "uuid": "76d28d97-75d3-47eb-bb77-3d347b76f1b6"
  750. },
  751. {
  752. "core": false,
  753. "difficulty": 6,
  754. "slug": "grade-school",
  755. "topics": [
  756. "conditionals",
  757. "lists",
  758. "maps",
  759. "sorting",
  760. "strings"
  761. ],
  762. "unlocked_by": "word-count",
  763. "uuid": "b4af5da1-601f-4b0f-bfb8-4a381851090c"
  764. },
  765. {
  766. "core": false,
  767. "difficulty": 6,
  768. "slug": "robot-simulator",
  769. "topics": [
  770. "classes",
  771. "enumerations",
  772. "logic",
  773. "loops"
  774. ],
  775. "unlocked_by": "secret-handshake",
  776. "uuid": "993bde9d-7774-4e7a-a381-9eee75f28ecb"
  777. },
  778. {
  779. "core": true,
  780. "difficulty": 6,
  781. "slug": "binary-search",
  782. "topics": [
  783. "recursion",
  784. "arrays",
  785. "searching",
  786. "generics"
  787. ],
  788. "unlocked_by": null,
  789. "uuid": "50136dc3-caf7-4fa1-b7bd-0cba1bea9176"
  790. },
  791. {
  792. "core": false,
  793. "difficulty": 6,
  794. "slug": "minesweeper",
  795. "topics": [
  796. "conditionals",
  797. "games",
  798. "integers",
  799. "lists",
  800. "matrices",
  801. "strings"
  802. ],
  803. "unlocked_by": "scrabble-score",
  804. "uuid": "416a1489-12af-4593-8540-0f55285c96b4"
  805. },
  806. {
  807. "core": false,
  808. "difficulty": 6,
  809. "slug": "wordy",
  810. "topics": [
  811. "exception_handling",
  812. "integers",
  813. "logic",
  814. "parsing",
  815. "pattern_matching",
  816. "regular_expressions",
  817. "strings",
  818. "transforming"
  819. ],
  820. "unlocked_by": "secret-handshake",
  821. "uuid": "3310a3cd-c0cb-45fa-8c51-600178be904a"
  822. },
  823. {
  824. "core": false,
  825. "difficulty": 6,
  826. "slug": "all-your-base",
  827. "topics": [
  828. "arrays",
  829. "conditionals",
  830. "exception_handling",
  831. "integers",
  832. "loops",
  833. "mathematics"
  834. ],
  835. "unlocked_by": "saddle-points",
  836. "uuid": "f7c2e4b5-1995-4dfe-b827-c9aff8ac5332"
  837. },
  838. {
  839. "core": true,
  840. "difficulty": 6,
  841. "slug": "bank-account",
  842. "topics": [
  843. "concurrency",
  844. "exception_handling",
  845. "integers"
  846. ],
  847. "unlocked_by": null,
  848. "uuid": "a242efc5-159d-492b-861d-12a1459fb334"
  849. },
  850. {
  851. "core": false,
  852. "difficulty": 6,
  853. "slug": "bowling",
  854. "topics": [
  855. "conditionals",
  856. "exception_handling",
  857. "games",
  858. "integers",
  859. "mathematics"
  860. ],
  861. "unlocked_by": "scrabble-score",
  862. "uuid": "4b3f7771-c642-4278-a3d9-2fb958f26361"
  863. },
  864. {
  865. "core": true,
  866. "difficulty": 6,
  867. "slug": "linked-list",
  868. "topics": [
  869. "algorithms",
  870. "generics",
  871. "lists"
  872. ],
  873. "unlocked_by": null,
  874. "uuid": "7ba5084d-3b75-4406-a0d7-87c26387f9c0"
  875. },
  876. {
  877. "core": false,
  878. "difficulty": 6,
  879. "slug": "tournament",
  880. "topics": [
  881. "loops",
  882. "maps",
  883. "parsing",
  884. "sorting",
  885. "text_formatting"
  886. ],
  887. "unlocked_by": "matrix",
  888. "uuid": "486d342e-c834-40fc-b691-a4dab3f790da"
  889. },
  890. {
  891. "core": false,
  892. "difficulty": 6,
  893. "slug": "parallel-letter-frequency",
  894. "topics": [
  895. "concurrency",
  896. "maps",
  897. "strings"
  898. ],
  899. "unlocked_by": "bank-account",
  900. "uuid": "38a405e8-619d-400f-b53c-2f06461fdf9d"
  901. },
  902. {
  903. "core": false,
  904. "difficulty": 6,
  905. "slug": "rail-fence-cipher",
  906. "topics": [
  907. "strings",
  908. "loops",
  909. "conditionals"
  910. ],
  911. "unlocked_by": "rotational-cipher",
  912. "uuid": "6e4ad4ed-cc02-4132-973d-b9163ba0ea3d"
  913. },
  914. {
  915. "core": false,
  916. "difficulty": 7,
  917. "slug": "anagram",
  918. "topics": [
  919. "arrays",
  920. "conditionals",
  921. "equality",
  922. "lists",
  923. "loops",
  924. "strings"
  925. ],
  926. "unlocked_by": "hello-world",
  927. "uuid": "fb10dc2f-0ba1-44b6-8365-5e48e86d1283"
  928. },
  929. {
  930. "core": false,
  931. "difficulty": 7,
  932. "slug": "sublist",
  933. "topics": [
  934. "enumeration",
  935. "generics",
  936. "lists",
  937. "loops",
  938. "searching"
  939. ],
  940. "unlocked_by": "linked-list",
  941. "uuid": "d2aedbd7-092a-43d0-8a5e-ae3ebd5b9c7f"
  942. },
  943. {
  944. "core": false,
  945. "difficulty": 7,
  946. "slug": "word-search",
  947. "topics": [
  948. "games",
  949. "logic",
  950. "matrices",
  951. "pattern_matching",
  952. "searching",
  953. "strings"
  954. ],
  955. "unlocked_by": "scrabble-score",
  956. "uuid": "b53bde52-cb5f-4d43-86ec-18aa509d62f9"
  957. },
  958. {
  959. "core": false,
  960. "difficulty": 7,
  961. "slug": "simple-linked-list",
  962. "topics": [
  963. "algorithms",
  964. "exception_handling",
  965. "generics",
  966. "lists"
  967. ],
  968. "unlocked_by": "linked-list",
  969. "uuid": "e3e5ffe5-cfc1-467e-a28a-da0302130144"
  970. },
  971. {
  972. "core": false,
  973. "difficulty": 7,
  974. "slug": "binary-search-tree",
  975. "topics": [
  976. "generics",
  977. "graphs",
  978. "searching",
  979. "sorting",
  980. "trees"
  981. ],
  982. "unlocked_by": "binary-search",
  983. "uuid": "0a2d18aa-7b5e-4401-a952-b93d2060694f"
  984. },
  985. {
  986. "core": false,
  987. "difficulty": 7,
  988. "slug": "meetup",
  989. "topics": [
  990. "conditionals",
  991. "dates",
  992. "enumerations",
  993. "loops"
  994. ],
  995. "unlocked_by": "gigasecond",
  996. "uuid": "602511d5-7e89-4def-b072-4dd311816810"
  997. },
  998. {
  999. "core": false,
  1000. "difficulty": 7,
  1001. "slug": "crypto-square",
  1002. "topics": [
  1003. "cryptography",
  1004. "lists",
  1005. "mathematics",
  1006. "security",
  1007. "strings",
  1008. "text_formatting"
  1009. ],
  1010. "unlocked_by": "rotational-cipher",
  1011. "uuid": "162bebdc-9bf2-43c0-8460-a91f5fc16147"
  1012. },
  1013. {
  1014. "core": false,
  1015. "difficulty": 7,
  1016. "slug": "markdown",
  1017. "topics": [
  1018. "strings",
  1019. "conditionals",
  1020. "pattern_matching",
  1021. "refactoring"
  1022. ],
  1023. "unlocked_by": "scrabble-score",
  1024. "uuid": "cc18f2e5-4e36-47d6-aa60-8ca5ff54019a"
  1025. },
  1026. {
  1027. "core": false,
  1028. "difficulty": 7,
  1029. "slug": "poker",
  1030. "topics": [
  1031. "games",
  1032. "parsing",
  1033. "sorting"
  1034. ],
  1035. "unlocked_by": "scrabble-score",
  1036. "uuid": "57eeac00-741c-4843-907a-51f0ac5ea4cb"
  1037. },
  1038. {
  1039. "core": false,
  1040. "difficulty": 7,
  1041. "slug": "clock",
  1042. "topics": [
  1043. "equality",
  1044. "integers",
  1045. "logic",
  1046. "object_oriented_programming",
  1047. "strings",
  1048. "time"
  1049. ],
  1050. "unlocked_by": "saddle-points",
  1051. "uuid": "97c8fcd4-85b6-41cb-9de2-b4e1b4951222"
  1052. },
  1053. {
  1054. "core": false,
  1055. "difficulty": 7,
  1056. "slug": "zipper",
  1057. "topics": [
  1058. "integer",
  1059. "nodes",
  1060. "tree",
  1061. "links"
  1062. ],
  1063. "unlocked_by": "linked-list",
  1064. "uuid": "25d2c7a5-1ec8-464a-b3de-ad1b27464ef1"
  1065. },
  1066. {
  1067. "core": false,
  1068. "difficulty": 8,
  1069. "slug": "ocr-numbers",
  1070. "topics": [
  1071. "exception_handling",
  1072. "lists",
  1073. "loops",
  1074. "parsing",
  1075. "strings"
  1076. ],
  1077. "unlocked_by": "robot-name",
  1078. "uuid": "5cbc6a67-3a53-4aad-ae68-ff469525437f"
  1079. },
  1080. {
  1081. "core": false,
  1082. "difficulty": 8,
  1083. "slug": "circular-buffer",
  1084. "topics": [
  1085. "classes",
  1086. "exception_handling",
  1087. "queues"
  1088. ],
  1089. "unlocked_by": "linked-list",
  1090. "uuid": "626dc25a-062c-4053-a8c1-788e4dc44ca0"
  1091. },
  1092. {
  1093. "core": false,
  1094. "difficulty": 8,
  1095. "slug": "rectangles",
  1096. "topics": [
  1097. "arrays",
  1098. "logic",
  1099. "pattern_recognition",
  1100. "strings"
  1101. ],
  1102. "unlocked_by": "robot-name",
  1103. "uuid": "64cda115-919a-4eef-9a45-9ec5d1af98cc"
  1104. },
  1105. {
  1106. "core": false,
  1107. "difficulty": 8,
  1108. "slug": "book-store",
  1109. "topics": [
  1110. "algorithms",
  1111. "floating_point_numbers",
  1112. "integers",
  1113. "lists",
  1114. "mathematics"
  1115. ],
  1116. "unlocked_by": "flatten-array",
  1117. "uuid": "e5f05d00-fe5b-4d78-b2fa-934c1c9afb32"
  1118. },
  1119. {
  1120. "core": false,
  1121. "difficulty": 8,
  1122. "slug": "simple-cipher",
  1123. "topics": [
  1124. "cryptography",
  1125. "exception_handling",
  1126. "mathematics",
  1127. "randomness",
  1128. "security",
  1129. "strings"
  1130. ],
  1131. "unlocked_by": "rotational-cipher",
  1132. "uuid": "f654831f-c34b-44f5-9dd5-054efbb486f2"
  1133. },
  1134. {
  1135. "core": false,
  1136. "difficulty": 8,
  1137. "slug": "complex-numbers",
  1138. "topics": [
  1139. "floating_point_numbers",
  1140. "mathematics"
  1141. ],
  1142. "unlocked_by": "triangle",
  1143. "uuid": "52d11278-0d65-4b5b-b387-1374fced3243"
  1144. },
  1145. {
  1146. "core": false,
  1147. "difficulty": 8,
  1148. "slug": "rational-numbers",
  1149. "topics": [
  1150. "floating_point_numbers",
  1151. "mathematics",
  1152. "algorithms"
  1153. ],
  1154. "unlocked_by": "triangle",
  1155. "uuid": "50ed54ce-3047-4590-9fda-0a7e9aeeba30"
  1156. },
  1157. {
  1158. "core": false,
  1159. "difficulty": 8,
  1160. "slug": "list-ops",
  1161. "topics": [
  1162. "filtering",
  1163. "functional_programming",
  1164. "generics",
  1165. "lists",
  1166. "loops"
  1167. ],
  1168. "unlocked_by": "linked-list",
  1169. "uuid": "a9836565-5c39-4285-b83a-53408be36ccc"
  1170. },
  1171. {
  1172. "core": false,
  1173. "difficulty": 8,
  1174. "slug": "change",
  1175. "topics": [
  1176. "algorithms",
  1177. "exception_handling",
  1178. "integers",
  1179. "lists"
  1180. ],
  1181. "unlocked_by": "flatten-array",
  1182. "uuid": "bac1f4bc-eea9-43c1-8e95-097347f5925e"
  1183. },
  1184. {
  1185. "core": false,
  1186. "difficulty": 8,
  1187. "slug": "palindrome-products",
  1188. "topics": [
  1189. "conditionals",
  1190. "integers",
  1191. "lists",
  1192. "loops",
  1193. "maps",
  1194. "mathematics"
  1195. ],
  1196. "unlocked_by": "saddle-points",
  1197. "uuid": "873c05de-b5f5-4c5b-97f0-d1ede8a82832"
  1198. },
  1199. {
  1200. "core": false,
  1201. "difficulty": 9,
  1202. "slug": "pythagorean-triplet",
  1203. "topics": [
  1204. "integer",
  1205. "lists",
  1206. "logic",
  1207. "mathematics"
  1208. ],
  1209. "unlocked_by": "triangle",
  1210. "uuid": "88505f95-89e5-4a08-8ed2-208eb818cdf1"
  1211. },
  1212. {
  1213. "core": false,
  1214. "difficulty": 9,
  1215. "slug": "forth",
  1216. "topics": [
  1217. "exception_handling",
  1218. "lists",
  1219. "logic",
  1220. "parsing",
  1221. "stacks",
  1222. "strings"
  1223. ],
  1224. "unlocked_by": "secret-handshake",
  1225. "uuid": "f0c0316d-3fb5-455e-952a-91161e7fb298"
  1226. },
  1227. {
  1228. "core": false,
  1229. "difficulty": 10,
  1230. "slug": "custom-set",
  1231. "topics": [
  1232. "equality",
  1233. "generics",
  1234. "sets"
  1235. ],
  1236. "unlocked_by": "linked-list",
  1237. "uuid": "377fe38b-08ad-4f3a-8118-a43c10f7b9b2"
  1238. },
  1239. {
  1240. "deprecated": true,
  1241. "slug": "accumulate",
  1242. "uuid": "e58c29d2-80a7-40ef-bed0-4a184ae35f34"
  1243. },
  1244. {
  1245. "deprecated": true,
  1246. "slug": "binary",
  1247. "uuid": "9ea6e0fa-b91d-4d17-ac8f-6d2dc30fdd44"
  1248. },
  1249. {
  1250. "deprecated": true,
  1251. "slug": "hexadecimal",
  1252. "uuid": "6fe53a08-c123-465d-864a-ef18217203c4"
  1253. },
  1254. {
  1255. "deprecated": true,
  1256. "slug": "octal",
  1257. "uuid": "14a29e82-f9b1-4662-b678-06992e306c01"
  1258. },
  1259. {
  1260. "deprecated": true,
  1261. "slug": "strain",
  1262. "uuid": "2d195cd9-1814-490a-8dd6-a2c676f1d4cd"
  1263. },
  1264. {
  1265. "deprecated": true,
  1266. "slug": "trinary",
  1267. "uuid": "ee3a8abe-6b19-4b47-9cf6-4d39ae915fb7"
  1268. }
  1269. ],
  1270. "foregone": [
  1271. "leap",
  1272. "grains",
  1273. "say"
  1274. ],
  1275. "language": "Java",
  1276. "solution_pattern": "reference"
  1277. }