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

config.json 25KB

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