Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2019
316
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 29.25 KB | None | 0 0
  1. .
  2. ├── bin
  3. │   ├── check-readmes.sh
  4. │   ├── check-test-version.py
  5. │   ├── create_issue.py
  6. │   ├── fetch-configlet
  7. │   ├── generate_tests.py
  8. │   └── template_status.py
  9. ├── config
  10. │   ├── exercise_readme.go.tmpl
  11. │   ├── generator_macros.j2
  12. │   └── maintainers.json
  13. ├── config.json
  14. ├── CONTRIBUTING.md
  15. ├── docs
  16. │   ├── ABOUT.md
  17. │   ├── GENERATOR.md
  18. │   ├── HELLO.md
  19. │   ├── img
  20. │   │   ├── AddFiles.png
  21. │   │   ├── SolutionExplorer.png
  22. │   │   └── TestExplorer.png
  23. │   ├── INSTALLATION.md
  24. │   ├── LEARNING.md
  25. │   ├── RESOURCES.md
  26. │   ├── SNIPPET.txt
  27. │   ├── TESTS.md
  28. │   └── TOOLS.md
  29. ├── exercises
  30. │   ├── accumulate
  31. │   │   ├── accumulate.py
  32. │   │   ├── accumulate_test.py
  33. │   │   ├── example.py
  34. │   │   └── README.md
  35. │   ├── acronym
  36. │   │   ├── acronym.py
  37. │   │   ├── acronym_test.py
  38. │   │   ├── example.py
  39. │   │   ├── .meta
  40. │   │   │   └── template.j2
  41. │   │   └── README.md
  42. │   ├── affine-cipher
  43. │   │   ├── affine_cipher.py
  44. │   │   ├── affine_cipher_test.py
  45. │   │   ├── example.py
  46. │   │   └── README.md
  47. │   ├── allergies
  48. │   │   ├── allergies.py
  49. │   │   ├── allergies_test.py
  50. │   │   ├── example.py
  51. │   │   └── README.md
  52. │   ├── all-your-base
  53. │   │   ├── all_your_base.py
  54. │   │   ├── all_your_base_test.py
  55. │   │   ├── example.py
  56. │   │   └── README.md
  57. │   ├── alphametics
  58. │   │   ├── alphametics.py
  59. │   │   ├── alphametics_test.py
  60. │   │   ├── example.py
  61. │   │   └── README.md
  62. │   ├── anagram
  63. │   │   ├── anagram.py
  64. │   │   ├── anagram_test.py
  65. │   │   ├── example.py
  66. │   │   └── README.md
  67. │   ├── armstrong-numbers
  68. │   │   ├── armstrong_numbers.py
  69. │   │   ├── armstrong_numbers_test.py
  70. │   │   ├── example.py
  71. │   │   └── README.md
  72. │   ├── atbash-cipher
  73. │   │   ├── atbash_cipher.py
  74. │   │   ├── atbash_cipher_test.py
  75. │   │   ├── example.py
  76. │   │   └── README.md
  77. │   ├── bank-account
  78. │   │   ├── bank_account.py
  79. │   │   ├── bank_account_test.py
  80. │   │   ├── example.py
  81. │   │   └── README.md
  82. │   ├── beer-song
  83. │   │   ├── beer_song.py
  84. │   │   ├── beer_song_test.py
  85. │   │   ├── example.py
  86. │   │   └── README.md
  87. │   ├── binary
  88. │   │   ├── binary.py
  89. │   │   ├── binary_test.py
  90. │   │   ├── example.py
  91. │   │   └── README.md
  92. │   ├── binary-search
  93. │   │   ├── binary_search.py
  94. │   │   ├── binary_search_test.py
  95. │   │   ├── example.py
  96. │   │   └── README.md
  97. │   ├── binary-search-tree
  98. │   │   ├── binary_search_tree.py
  99. │   │   ├── binary_search_tree_test.py
  100. │   │   ├── example.py
  101. │   │   └── README.md
  102. │   ├── bob
  103. │   │   ├── bob.py
  104. │   │   ├── bob_test.py
  105. │   │   ├── example.py
  106. │   │   └── README.md
  107. │   ├── book-store
  108. │   │   ├── book_store.py
  109. │   │   ├── book_store_test.py
  110. │   │   ├── example.py
  111. │   │   ├── .meta
  112. │   │   │   └── template.j2
  113. │   │   └── README.md
  114. │   ├── bowling
  115. │   │   ├── bowling.py
  116. │   │   ├── bowling_test.py
  117. │   │   ├── example.py
  118. │   │   ├── .gitignore
  119. │   │   └── README.md
  120. │   ├── change
  121. │   │   ├── change.py
  122. │   │   ├── change_test.py
  123. │   │   ├── example.py
  124. │   │   └── README.md
  125. │   ├── circular-buffer
  126. │   │   ├── circular_buffer.py
  127. │   │   ├── circular_buffer_test.py
  128. │   │   ├── example.py
  129. │   │   └── README.md
  130. │   ├── clock
  131. │   │   ├── clock.py
  132. │   │   ├── clock_test.py
  133. │   │   ├── example.py
  134. │   │   ├── .meta
  135. │   │   │   └── template.j2
  136. │   │   └── README.md
  137. │   ├── collatz-conjecture
  138. │   │   ├── collatz_conjecture.py
  139. │   │   ├── collatz_conjecture_test.py
  140. │   │   ├── example.py
  141. │   │   ├── .meta
  142. │   │   │   └── hints.md
  143. │   │   └── README.md
  144. │   ├── complex-numbers
  145. │   │   ├── complex_numbers.py
  146. │   │   ├── complex_numbers_test.py
  147. │   │   ├── example.py
  148. │   │   ├── .meta
  149. │   │   │   └── hints.md
  150. │   │   └── README.md
  151. │   ├── connect
  152. │   │   ├── connect.py
  153. │   │   ├── connect_test.py
  154. │   │   ├── example.py
  155. │   │   └── README.md
  156. │   ├── crypto-square
  157. │   │   ├── crypto_square.py
  158. │   │   ├── crypto_square_test.py
  159. │   │   ├── example.py
  160. │   │   └── README.md
  161. │   ├── custom-set
  162. │   │   ├── custom_set.py
  163. │   │   ├── custom_set_test.py
  164. │   │   ├── example.py
  165. │   │   └── README.md
  166. │   ├── darts
  167. │   │   ├── darts.py
  168. │   │   ├── darts_test.py
  169. │   │   ├── example.py
  170. │   │   └── README.md
  171. │   ├── diamond
  172. │   │   ├── diamond.py
  173. │   │   ├── diamond_test.py
  174. │   │   ├── example.py
  175. │   │   └── README.md
  176. │   ├── difference-of-squares
  177. │   │   ├── difference_of_squares.py
  178. │   │   ├── difference_of_squares_test.py
  179. │   │   ├── example.py
  180. │   │   └── README.md
  181. │   ├── diffie-hellman
  182. │   │   ├── diffie_hellman.py
  183. │   │   ├── diffie_hellman_test.py
  184. │   │   ├── example.py
  185. │   │   ├── .meta
  186. │   │   │   └── hints.md
  187. │   │   └── README.md
  188. │   ├── dnd-character
  189. │   │   ├── dnd_character.py
  190. │   │   ├── dnd_character_test.py
  191. │   │   ├── example.py
  192. │   │   └── README.md
  193. │   ├── dominoes
  194. │   │   ├── dominoes.py
  195. │   │   ├── dominoes_test.py
  196. │   │   ├── example.py
  197. │   │   └── README.md
  198. │   ├── dot-dsl
  199. │   │   ├── dot_dsl.py
  200. │   │   ├── dot_dsl_test.py
  201. │   │   ├── example.py
  202. │   │   ├── .meta
  203. │   │   │   └── hints.md
  204. │   │   └── README.md
  205. │   ├── error-handling
  206. │   │   ├── error_handling.py
  207. │   │   ├── error_handling_test.py
  208. │   │   ├── example.py
  209. │   │   ├── .meta
  210. │   │   │   └── hints.md
  211. │   │   └── README.md
  212. │   ├── etl
  213. │   │   ├── etl.py
  214. │   │   ├── etl_test.py
  215. │   │   ├── example.py
  216. │   │   ├── .meta
  217. │   │   │   └── template.j2
  218. │   │   └── README.md
  219. │   ├── flatten-array
  220. │   │   ├── example.py
  221. │   │   ├── flatten_array.py
  222. │   │   ├── flatten_array_test.py
  223. │   │   └── README.md
  224. │   ├── food-chain
  225. │   │   ├── example.py
  226. │   │   ├── food_chain.py
  227. │   │   ├── food_chain_test.py
  228. │   │   └── README.md
  229. │   ├── forth
  230. │   │   ├── example.py
  231. │   │   ├── forth.py
  232. │   │   ├── forth_test.py
  233. │   │   └── README.md
  234. │   ├── gigasecond
  235. │   │   ├── example.py
  236. │   │   ├── gigasecond.py
  237. │   │   ├── gigasecond_test.py
  238. │   │   └── README.md
  239. │   ├── go-counting
  240. │   │   ├── example.py
  241. │   │   ├── go_counting.py
  242. │   │   ├── go_counting_test.py
  243. │   │   └── README.md
  244. │   ├── grade-school
  245. │   │   ├── example.py
  246. │   │   ├── grade_school.py
  247. │   │   ├── grade_school_test.py
  248. │   │   ├── .meta
  249. │   │   │   └── template.j2
  250. │   │   └── README.md
  251. │   ├── grains
  252. │   │   ├── example.py
  253. │   │   ├── grains.py
  254. │   │   ├── grains_test.py
  255. │   │   └── README.md
  256. │   ├── grep
  257. │   │   ├── example.py
  258. │   │   ├── grep.py
  259. │   │   ├── grep_test.py
  260. │   │   └── README.md
  261. │   ├── hamming
  262. │   │   ├── example.py
  263. │   │   ├── hamming.py
  264. │   │   ├── hamming_test.py
  265. │   │   ├── .meta
  266. │   │   │   └── template.j2
  267. │   │   └── README.md
  268. │   ├── hangman
  269. │   │   ├── example.py
  270. │   │   ├── hangman.py
  271. │   │   ├── hangman_test.py
  272. │   │   ├── .meta
  273. │   │   │   └── hints.md
  274. │   │   └── README.md
  275. │   ├── hello-world
  276. │   │   ├── example.py
  277. │   │   ├── hello_world.py
  278. │   │   ├── hello_world_test.py
  279. │   │   ├── .meta
  280. │   │   │   └── template.j2
  281. │   │   └── README.md
  282. │   ├── hexadecimal
  283. │   │   ├── example.py
  284. │   │   ├── hexadecimal.py
  285. │   │   ├── hexadecimal_test.py
  286. │   │   └── README.md
  287. │   ├── high-scores
  288. │   │   ├── example.py
  289. │   │   ├── high_scores.py
  290. │   │   ├── high_scores_test.py
  291. │   │   ├── .meta
  292. │   │   │   ├── hints.md
  293. │   │   │   └── template.j2
  294. │   │   └── README.md
  295. │   ├── house
  296. │   │   ├── example.py
  297. │   │   ├── house.py
  298. │   │   ├── house_test.py
  299. │   │   └── README.md
  300. │   ├── isbn-verifier
  301. │   │   ├── example.py
  302. │   │   ├── isbn_verifier.py
  303. │   │   ├── isbn_verifier_test.py
  304. │   │   └── README.md
  305. │   ├── isogram
  306. │   │   ├── example.py
  307. │   │   ├── isogram.py
  308. │   │   ├── isogram_test.py
  309. │   │   ├── .meta
  310. │   │   │   └── template.j2
  311. │   │   └── README.md
  312. │   ├── kindergarten-garden
  313. │   │   ├── example.py
  314. │   │   ├── kindergarten_garden.py
  315. │   │   ├── kindergarten_garden_test.py
  316. │   │   ├── .meta
  317. │   │   │   ├── additional_tests.json
  318. │   │   │   └── template.j2
  319. │   │   └── README.md
  320. │   ├── knapsack
  321. │   │   ├── example.py
  322. │   │   ├── knapsack.py
  323. │   │   ├── knapsack_test.py
  324. │   │   └── README.md
  325. │   ├── largest-series-product
  326. │   │   ├── example.py
  327. │   │   ├── largest_series_product.py
  328. │   │   ├── largest_series_product_test.py
  329. │   │   └── README.md
  330. │   ├── leap
  331. │   │   ├── example.py
  332. │   │   ├── leap.py
  333. │   │   ├── leap_test.py
  334. │   │   ├── .meta
  335. │   │   │   └── template.j2
  336. │   │   └── README.md
  337. │   ├── ledger
  338. │   │   ├── example.py
  339. │   │   ├── ledger.py
  340. │   │   ├── ledger_test.py
  341. │   │   └── README.md
  342. │   ├── linked-list
  343. │   │   ├── example.py
  344. │   │   ├── linked_list.py
  345. │   │   ├── linked_list_test.py
  346. │   │   └── README.md
  347. │   ├── list-ops
  348. │   │   ├── example.py
  349. │   │   ├── list_ops.py
  350. │   │   ├── list_ops_test.py
  351. │   │   └── README.md
  352. │   ├── luhn
  353. │   │   ├── example.py
  354. │   │   ├── luhn.py
  355. │   │   ├── luhn_test.py
  356. │   │   ├── .meta
  357. │   │   │   └── template.j2
  358. │   │   └── README.md
  359. │   ├── markdown
  360. │   │   ├── example.py
  361. │   │   ├── markdown.py
  362. │   │   ├── markdown_test.py
  363. │   │   ├── .meta
  364. │   │   │   └── template.j2
  365. │   │   └── README.md
  366. │   ├── matching-brackets
  367. │   │   ├── example.py
  368. │   │   ├── matching_brackets.py
  369. │   │   ├── matching_brackets_test.py
  370. │   │   └── README.md
  371. │   ├── matrix
  372. │   │   ├── example.py
  373. │   │   ├── matrix.py
  374. │   │   ├── matrix_test.py
  375. │   │   ├── .meta
  376. │   │   │   ├── hints.md
  377. │   │   │   └── template.j2
  378. │   │   └── README.md
  379. │   ├── meetup
  380. │   │   ├── example.py
  381. │   │   ├── meetup.py
  382. │   │   ├── meetup_test.py
  383. │   │   └── README.md
  384. │   ├── minesweeper
  385. │   │   ├── example.py
  386. │   │   ├── minesweeper.py
  387. │   │   ├── minesweeper_test.py
  388. │   │   └── README.md
  389. │   ├── nth-prime
  390. │   │   ├── example.py
  391. │   │   ├── nth_prime.py
  392. │   │   ├── nth_prime_test.py
  393. │   │   └── README.md
  394. │   ├── nucleotide-count
  395. │   │   ├── example.py
  396. │   │   ├── nucleotide_count.py
  397. │   │   ├── nucleotide_count_test.py
  398. │   │   └── README.md
  399. │   ├── ocr-numbers
  400. │   │   ├── example.py
  401. │   │   ├── ocr_numbers.py
  402. │   │   ├── ocr_numbers_test.py
  403. │   │   └── README.md
  404. │   ├── octal
  405. │   │   ├── example.py
  406. │   │   ├── octal.py
  407. │   │   ├── octal_test.py
  408. │   │   └── README.md
  409. │   ├── palindrome-products
  410. │   │   ├── example.py
  411. │   │   ├── palindrome_products.py
  412. │   │   ├── palindrome_products_test.py
  413. │   │   └── README.md
  414. │   ├── pangram
  415. │   │   ├── example.py
  416. │   │   ├── .meta
  417. │   │   │   └── template.j2
  418. │   │   ├── pangram.py
  419. │   │   ├── pangram_test.py
  420. │   │   └── README.md
  421. │   ├── parallel-letter-frequency
  422. │   │   ├── example.py
  423. │   │   ├── parallel_letter_frequency.py
  424. │   │   ├── parallel_letter_frequency_test.py
  425. │   │   └── README.md
  426. │   ├── pascals-triangle
  427. │   │   ├── example.py
  428. │   │   ├── pascals_triangle.py
  429. │   │   ├── pascals_triangle_test.py
  430. │   │   └── README.md
  431. │   ├── perfect-numbers
  432. │   │   ├── example.py
  433. │   │   ├── perfect_numbers.py
  434. │   │   ├── perfect_numbers_test.py
  435. │   │   └── README.md
  436. │   ├── phone-number
  437. │   │   ├── example.py
  438. │   │   ├── .meta
  439. │   │   │   └── template.j2
  440. │   │   ├── phone_number.py
  441. │   │   ├── phone_number_test.py
  442. │   │   └── README.md
  443. │   ├── pig-latin
  444. │   │   ├── example.py
  445. │   │   ├── pig_latin.py
  446. │   │   ├── pig_latin_test.py
  447. │   │   └── README.md
  448. │   ├── point-mutations
  449. │   │   ├── example.py
  450. │   │   ├── point_mutations.py
  451. │   │   ├── point_mutations_test.py
  452. │   │   └── README.md
  453. │   ├── poker
  454. │   │   ├── example.py
  455. │   │   ├── poker.py
  456. │   │   ├── poker_test.py
  457. │   │   └── README.md
  458. │   ├── pov
  459. │   │   ├── example.py
  460. │   │   ├── pov.py
  461. │   │   ├── pov_test.py
  462. │   │   └── README.md
  463. │   ├── prime-factors
  464. │   │   ├── example.py
  465. │   │   ├── prime_factors.py
  466. │   │   ├── prime_factors_test.py
  467. │   │   └── README.md
  468. │   ├── protein-translation
  469. │   │   ├── example.py
  470. │   │   ├── protein_translation.py
  471. │   │   ├── protein_translation_test.py
  472. │   │   └── README.md
  473. │   ├── proverb
  474. │   │   ├── example.py
  475. │   │   ├── proverb.py
  476. │   │   ├── proverb_test.py
  477. │   │   └── README.md
  478. │   ├── pythagorean-triplet
  479. │   │   ├── example.py
  480. │   │   ├── pythagorean_triplet.py
  481. │   │   ├── pythagorean_triplet_test.py
  482. │   │   └── README.md
  483. │   ├── queen-attack
  484. │   │   ├── example.py
  485. │   │   ├── queen_attack.py
  486. │   │   ├── queen_attack_test.py
  487. │   │   └── README.md
  488. │   ├── rail-fence-cipher
  489. │   │   ├── example.py
  490. │   │   ├── rail_fence_cipher.py
  491. │   │   ├── rail_fence_cipher_test.py
  492. │   │   └── README.md
  493. │   ├── raindrops
  494. │   │   ├── example.py
  495. │   │   ├── .meta
  496. │   │   │   └── template.j2
  497. │   │   ├── raindrops.py
  498. │   │   ├── raindrops_test.py
  499. │   │   └── README.md
  500. │   ├── rational-numbers
  501. │   │   ├── example.py
  502. │   │   ├── rational_numbers.py
  503. │   │   ├── rational_numbers_test.py
  504. │   │   └── README.md
  505. │   ├── react
  506. │   │   ├── example.py
  507. │   │   ├── react.py
  508. │   │   ├── react_test.py
  509. │   │   └── README.md
  510. │   ├── rectangles
  511. │   │   ├── example.py
  512. │   │   ├── README.md
  513. │   │   ├── rectangles.py
  514. │   │   └── rectangles_test.py
  515. │   ├── resistor-color
  516. │   │   ├── example.py
  517. │   │   ├── README.md
  518. │   │   ├── resistor_color.py
  519. │   │   └── resistor_color_test.py
  520. │   ├── resistor-color-duo
  521. │   │   ├── example.py
  522. │   │   ├── .meta
  523. │   │   │   └── template.j2
  524. │   │   ├── README.md
  525. │   │   ├── resistor_color_duo.py
  526. │   │   └── resistor_color_duo_test.py
  527. │   ├── rest-api
  528. │   │   ├── example.py
  529. │   │   ├── .meta
  530. │   │   │   └── template.j2
  531. │   │   ├── README.md
  532. │   │   ├── rest_api.py
  533. │   │   └── rest_api_test.py
  534. │   ├── reverse-string
  535. │   │   ├── example.py
  536. │   │   ├── .meta
  537. │   │   │   └── template.j2
  538. │   │   ├── README.md
  539. │   │   ├── reverse_string.py
  540. │   │   └── reverse_string_test.py
  541. │   ├── rna-transcription
  542. │   │   ├── example.py
  543. │   │   ├── README.md
  544. │   │   ├── rna_transcription.py
  545. │   │   └── rna_transcription_test.py
  546. │   ├── robot-name
  547. │   │   ├── example.py
  548. │   │   ├── README.md
  549. │   │   ├── robot_name.py
  550. │   │   └── robot_name_test.py
  551. │   ├── robot-simulator
  552. │   │   ├── example.py
  553. │   │   ├── README.md
  554. │   │   ├── robot_simulator.py
  555. │   │   └── robot_simulator_test.py
  556. │   ├── roman-numerals
  557. │   │   ├── example.py
  558. │   │   ├── README.md
  559. │   │   ├── roman_numerals.py
  560. │   │   └── roman_numerals_test.py
  561. │   ├── rotational-cipher
  562. │   │   ├── example.py
  563. │   │   ├── README.md
  564. │   │   ├── rotational_cipher.py
  565. │   │   └── rotational_cipher_test.py
  566. │   ├── run-length-encoding
  567. │   │   ├── example.py
  568. │   │   ├── README.md
  569. │   │   ├── run_length_encoding.py
  570. │   │   └── run_length_encoding_test.py
  571. │   ├── saddle-points
  572. │   │   ├── example.py
  573. │   │   ├── README.md
  574. │   │   ├── saddle_points.py
  575. │   │   └── saddle_points_test.py
  576. │   ├── satellite
  577. │   │   ├── example.py
  578. │   │   ├── README.md
  579. │   │   ├── satellite.py
  580. │   │   └── satellite_test.py
  581. │   ├── say
  582. │   │   ├── example.py
  583. │   │   ├── README.md
  584. │   │   ├── say.py
  585. │   │   └── say_test.py
  586. │   ├── scale-generator
  587. │   │   ├── example.py
  588. │   │   ├── README.md
  589. │   │   ├── scale_generator.py
  590. │   │   └── scale_generator_test.py
  591. │   ├── scrabble-score
  592. │   │   ├── example.py
  593. │   │   ├── .meta
  594. │   │   │   └── template.j2
  595. │   │   ├── README.md
  596. │   │   ├── scrabble_score.py
  597. │   │   └── scrabble_score_test.py
  598. │   ├── secret-handshake
  599. │   │   ├── example.py
  600. │   │   ├── README.md
  601. │   │   ├── secret_handshake.py
  602. │   │   └── secret_handshake_test.py
  603. │   ├── series
  604. │   │   ├── example.py
  605. │   │   ├── README.md
  606. │   │   ├── series.py
  607. │   │   └── series_test.py
  608. │   ├── sgf-parsing
  609. │   │   ├── example.py
  610. │   │   ├── README.md
  611. │   │   ├── sgf_parsing.py
  612. │   │   └── sgf_parsing_test.py
  613. │   ├── sieve
  614. │   │   ├── example.py
  615. │   │   ├── README.md
  616. │   │   ├── sieve.py
  617. │   │   └── sieve_test.py
  618. │   ├── simple-cipher
  619. │   │   ├── example.py
  620. │   │   ├── .meta
  621. │   │   │   └── hints.md
  622. │   │   ├── README.md
  623. │   │   ├── simple_cipher.py
  624. │   │   └── simple_cipher_test.py
  625. │   ├── simple-linked-list
  626. │   │   ├── example.py
  627. │   │   ├── .meta
  628. │   │   │   └── hints.md
  629. │   │   ├── README.md
  630. │   │   ├── simple_linked_list.py
  631. │   │   └── simple_linked_list_test.py
  632. │   ├── space-age
  633. │   │   ├── example.py
  634. │   │   ├── README.md
  635. │   │   ├── space_age.py
  636. │   │   └── space_age_test.py
  637. │   ├── spiral-matrix
  638. │   │   ├── example.py
  639. │   │   ├── README.md
  640. │   │   ├── spiral_matrix.py
  641. │   │   └── spiral_matrix_test.py
  642. │   ├── strain
  643. │   │   ├── example.py
  644. │   │   ├── README.md
  645. │   │   ├── strain.py
  646. │   │   └── strain_test.py
  647. │   ├── sublist
  648. │   │   ├── example.py
  649. │   │   ├── README.md
  650. │   │   ├── sublist.py
  651. │   │   └── sublist_test.py
  652. │   ├── sum-of-multiples
  653. │   │   ├── example.py
  654. │   │   ├── README.md
  655. │   │   ├── sum_of_multiples.py
  656. │   │   └── sum_of_multiples_test.py
  657. │   ├── tournament
  658. │   │   ├── example.py
  659. │   │   ├── .meta
  660. │   │   │   └── template.j2
  661. │   │   ├── README.md
  662. │   │   ├── tournament.py
  663. │   │   └── tournament_test.py
  664. │   ├── transpose
  665. │   │   ├── example.py
  666. │   │   ├── README.md
  667. │   │   ├── transpose.py
  668. │   │   └── transpose_test.py
  669. │   ├── tree-building
  670. │   │   ├── example.py
  671. │   │   ├── README.md
  672. │   │   ├── tree_building.py
  673. │   │   └── tree_building_test.py
  674. │   ├── triangle
  675. │   │   ├── example.py
  676. │   │   ├── README.md
  677. │   │   ├── triangle.py
  678. │   │   └── triangle_test.py
  679. │   ├── trinary
  680. │   │   ├── example.py
  681. │   │   ├── README.md
  682. │   │   ├── trinary.py
  683. │   │   └── trinary_test.py
  684. │   ├── twelve-days
  685. │   │   ├── example.py
  686. │   │   ├── .meta
  687. │   │   │   └── template.j2
  688. │   │   ├── README.md
  689. │   │   ├── twelve_days.py
  690. │   │   └── twelve_days_test.py
  691. │   ├── two-bucket
  692. │   │   ├── example.py
  693. │   │   ├── README.md
  694. │   │   ├── two_bucket.py
  695. │   │   └── two_bucket_test.py
  696. │   ├── two-fer
  697. │   │   ├── example.py
  698. │   │   ├── .meta
  699. │   │   │   └── template.j2
  700. │   │   ├── README.md
  701. │   │   ├── two_fer.py
  702. │   │   └── two_fer_test.py
  703. │   ├── variable-length-quantity
  704. │   │   ├── example.py
  705. │   │   ├── README.md
  706. │   │   ├── variable_length_quantity.py
  707. │   │   └── variable_length_quantity_test.py
  708. │   ├── word-count
  709. │   │   ├── example.py
  710. │   │   ├── .meta
  711. │   │   │   ├── additional_tests.json
  712. │   │   │   └── template.j2
  713. │   │   ├── README.md
  714. │   │   ├── word_count.py
  715. │   │   └── word_count_test.py
  716. │   ├── word-search
  717. │   │   ├── example.py
  718. │   │   ├── README.md
  719. │   │   ├── word_search.py
  720. │   │   └── word_search_test.py
  721. │   ├── wordy
  722. │   │   ├── example.py
  723. │   │   ├── README.md
  724. │   │   ├── wordy.py
  725. │   │   └── wordy_test.py
  726. │   ├── yacht
  727. │   │   ├── example.py
  728. │   │   ├── README.md
  729. │   │   ├── yacht.py
  730. │   │   └── yacht_test.py
  731. │   ├── zebra-puzzle
  732. │   │   ├── example.py
  733. │   │   ├── README.md
  734. │   │   ├── zebra_puzzle.py
  735. │   │   └── zebra_puzzle_test.py
  736. │   └── zipper
  737. │   ├── example.py
  738. │   ├── README.md
  739. │   ├── zipper.py
  740. │   └── zipper_test.py
  741. ├── .flake8
  742. ├── .git
  743. │   ├── branches
  744. │   ├── config
  745. │   ├── description
  746. │   ├── FETCH_HEAD
  747. │   ├── HEAD
  748. │   ├── hooks
  749. │   │   ├── applypatch-msg.sample
  750. │   │   ├── commit-msg.sample
  751. │   │   ├── fsmonitor-watchman.sample
  752. │   │   ├── post-update.sample
  753. │   │   ├── pre-applypatch.sample
  754. │   │   ├── pre-commit.sample
  755. │   │   ├── prepare-commit-msg.sample
  756. │   │   ├── pre-push.sample
  757. │   │   ├── pre-rebase.sample
  758. │   │   ├── pre-receive.sample
  759. │   │   └── update.sample
  760. │   ├── index
  761. │   ├── info
  762. │   │   └── exclude
  763. │   ├── logs
  764. │   │   ├── HEAD
  765. │   │   └── refs
  766. │   │   ├── heads
  767. │   │   │   ├── master
  768. │   │   │   └── phone-number-add-test-template
  769. │   │   └── remotes
  770. │   │   └── origin
  771. │   │   └── HEAD
  772. │   ├── objects
  773. │   │   ├── info
  774. │   │   └── pack
  775. │   │   ├── pack-b6806b6ef23350c238d8fd0880781af943421631.idx
  776. │   │   └── pack-b6806b6ef23350c238d8fd0880781af943421631.pack
  777. │   ├── ORIG_HEAD
  778. │   ├── packed-refs
  779. │   └── refs
  780. │   ├── heads
  781. │   │   ├── master
  782. │   │   └── phone-number-add-test-template
  783. │   ├── remotes
  784. │   │   └── origin
  785. │   │   └── HEAD
  786. │   └── tags
  787. ├── .github
  788. │   ├── CODEOWNERS
  789. │   └── stale.yml
  790. ├── .gitignore
  791. ├── LICENSE
  792. ├── python-tree.txt
  793. ├── README.md
  794. ├── requirements-generator.txt
  795. ├── requirements.txt
  796. ├── test
  797. │   └── check-exercises.py
  798. └── .travis.yml
  799.  
  800. 185 directories, 612 files
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement