pythonlings 0.3.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (942) hide show
  1. pythonlings/__init__.py +0 -0
  2. pythonlings/__main__.py +4 -0
  3. pythonlings/app.py +84 -0
  4. pythonlings/cli.py +318 -0
  5. pythonlings/core/__init__.py +0 -0
  6. pythonlings/core/curriculum.py +106 -0
  7. pythonlings/core/docs.py +68 -0
  8. pythonlings/core/exercise.py +33 -0
  9. pythonlings/core/manifest.py +110 -0
  10. pythonlings/core/reset.py +43 -0
  11. pythonlings/core/runner.py +114 -0
  12. pythonlings/core/solutions.py +17 -0
  13. pythonlings/core/state.py +86 -0
  14. pythonlings/curriculum/checks/async/async1.py +4 -0
  15. pythonlings/curriculum/checks/async/async10.py +4 -0
  16. pythonlings/curriculum/checks/async/async2.py +4 -0
  17. pythonlings/curriculum/checks/async/async3.py +4 -0
  18. pythonlings/curriculum/checks/async/async4.py +4 -0
  19. pythonlings/curriculum/checks/async/async5.py +4 -0
  20. pythonlings/curriculum/checks/async/async6.py +4 -0
  21. pythonlings/curriculum/checks/async/async7.py +4 -0
  22. pythonlings/curriculum/checks/async/async8.py +2 -0
  23. pythonlings/curriculum/checks/async/async9.py +4 -0
  24. pythonlings/curriculum/checks/classes/classes1.py +3 -0
  25. pythonlings/curriculum/checks/classes/classes10.py +5 -0
  26. pythonlings/curriculum/checks/classes/classes11.py +5 -0
  27. pythonlings/curriculum/checks/classes/classes12.py +16 -0
  28. pythonlings/curriculum/checks/classes/classes2.py +3 -0
  29. pythonlings/curriculum/checks/classes/classes3.py +4 -0
  30. pythonlings/curriculum/checks/classes/classes4.py +4 -0
  31. pythonlings/curriculum/checks/classes/classes5.py +5 -0
  32. pythonlings/curriculum/checks/classes/classes6.py +4 -0
  33. pythonlings/curriculum/checks/classes/classes7.py +3 -0
  34. pythonlings/curriculum/checks/classes/classes8.py +3 -0
  35. pythonlings/curriculum/checks/classes/classes9.py +4 -0
  36. pythonlings/curriculum/checks/collections/collections1.py +4 -0
  37. pythonlings/curriculum/checks/collections/collections10.py +15 -0
  38. pythonlings/curriculum/checks/collections/collections2.py +4 -0
  39. pythonlings/curriculum/checks/collections/collections3.py +5 -0
  40. pythonlings/curriculum/checks/collections/collections4.py +4 -0
  41. pythonlings/curriculum/checks/collections/collections5.py +5 -0
  42. pythonlings/curriculum/checks/collections/collections6.py +6 -0
  43. pythonlings/curriculum/checks/collections/collections7.py +4 -0
  44. pythonlings/curriculum/checks/collections/collections8.py +5 -0
  45. pythonlings/curriculum/checks/collections/collections9.py +9 -0
  46. pythonlings/curriculum/checks/comprehensions/comprehensions1.py +3 -0
  47. pythonlings/curriculum/checks/comprehensions/comprehensions10.py +5 -0
  48. pythonlings/curriculum/checks/comprehensions/comprehensions2.py +3 -0
  49. pythonlings/curriculum/checks/comprehensions/comprehensions3.py +3 -0
  50. pythonlings/curriculum/checks/comprehensions/comprehensions4.py +6 -0
  51. pythonlings/curriculum/checks/comprehensions/comprehensions5.py +3 -0
  52. pythonlings/curriculum/checks/comprehensions/comprehensions6.py +3 -0
  53. pythonlings/curriculum/checks/comprehensions/comprehensions7.py +4 -0
  54. pythonlings/curriculum/checks/comprehensions/comprehensions8.py +5 -0
  55. pythonlings/curriculum/checks/comprehensions/comprehensions9.py +3 -0
  56. pythonlings/curriculum/checks/conditionals/conditionals1.py +2 -0
  57. pythonlings/curriculum/checks/conditionals/conditionals10.py +10 -0
  58. pythonlings/curriculum/checks/conditionals/conditionals2.py +5 -0
  59. pythonlings/curriculum/checks/conditionals/conditionals3.py +9 -0
  60. pythonlings/curriculum/checks/conditionals/conditionals4.py +7 -0
  61. pythonlings/curriculum/checks/conditionals/conditionals5.py +9 -0
  62. pythonlings/curriculum/checks/conditionals/conditionals6.py +7 -0
  63. pythonlings/curriculum/checks/conditionals/conditionals7.py +7 -0
  64. pythonlings/curriculum/checks/conditionals/conditionals8.py +9 -0
  65. pythonlings/curriculum/checks/conditionals/conditionals9.py +7 -0
  66. pythonlings/curriculum/checks/context_managers/context_managers1.py +15 -0
  67. pythonlings/curriculum/checks/context_managers/context_managers2.py +10 -0
  68. pythonlings/curriculum/checks/context_managers/context_managers3.py +2 -0
  69. pythonlings/curriculum/checks/context_managers/context_managers4.py +3 -0
  70. pythonlings/curriculum/checks/context_managers/context_managers5.py +5 -0
  71. pythonlings/curriculum/checks/context_managers/context_managers6.py +4 -0
  72. pythonlings/curriculum/checks/context_managers/context_managers7.py +16 -0
  73. pythonlings/curriculum/checks/context_managers/context_managers8.py +15 -0
  74. pythonlings/curriculum/checks/dataclasses/dataclasses1.py +3 -0
  75. pythonlings/curriculum/checks/dataclasses/dataclasses2.py +5 -0
  76. pythonlings/curriculum/checks/dataclasses/dataclasses3.py +4 -0
  77. pythonlings/curriculum/checks/dataclasses/dataclasses4.py +3 -0
  78. pythonlings/curriculum/checks/dataclasses/dataclasses5.py +9 -0
  79. pythonlings/curriculum/checks/dataclasses/dataclasses6.py +6 -0
  80. pythonlings/curriculum/checks/dataclasses/dataclasses7.py +6 -0
  81. pythonlings/curriculum/checks/dataclasses/dataclasses8.py +5 -0
  82. pythonlings/curriculum/checks/datetime/datetime1.py +4 -0
  83. pythonlings/curriculum/checks/datetime/datetime2.py +4 -0
  84. pythonlings/curriculum/checks/datetime/datetime3.py +6 -0
  85. pythonlings/curriculum/checks/datetime/datetime4.py +2 -0
  86. pythonlings/curriculum/checks/datetime/datetime5.py +2 -0
  87. pythonlings/curriculum/checks/datetime/datetime6.py +2 -0
  88. pythonlings/curriculum/checks/datetime/datetime7.py +2 -0
  89. pythonlings/curriculum/checks/datetime/datetime8.py +5 -0
  90. pythonlings/curriculum/checks/decorators/decorators1.py +8 -0
  91. pythonlings/curriculum/checks/decorators/decorators10.py +12 -0
  92. pythonlings/curriculum/checks/decorators/decorators2.py +5 -0
  93. pythonlings/curriculum/checks/decorators/decorators3.py +4 -0
  94. pythonlings/curriculum/checks/decorators/decorators4.py +7 -0
  95. pythonlings/curriculum/checks/decorators/decorators5.py +5 -0
  96. pythonlings/curriculum/checks/decorators/decorators6.py +8 -0
  97. pythonlings/curriculum/checks/decorators/decorators7.py +12 -0
  98. pythonlings/curriculum/checks/decorators/decorators8.py +20 -0
  99. pythonlings/curriculum/checks/decorators/decorators9.py +4 -0
  100. pythonlings/curriculum/checks/dictionaries/dictionaries1.py +3 -0
  101. pythonlings/curriculum/checks/dictionaries/dictionaries10.py +5 -0
  102. pythonlings/curriculum/checks/dictionaries/dictionaries2.py +2 -0
  103. pythonlings/curriculum/checks/dictionaries/dictionaries3.py +5 -0
  104. pythonlings/curriculum/checks/dictionaries/dictionaries4.py +5 -0
  105. pythonlings/curriculum/checks/dictionaries/dictionaries5.py +11 -0
  106. pythonlings/curriculum/checks/dictionaries/dictionaries6.py +4 -0
  107. pythonlings/curriculum/checks/dictionaries/dictionaries7.py +5 -0
  108. pythonlings/curriculum/checks/dictionaries/dictionaries8.py +4 -0
  109. pythonlings/curriculum/checks/dictionaries/dictionaries9.py +4 -0
  110. pythonlings/curriculum/checks/enums/enums1.py +4 -0
  111. pythonlings/curriculum/checks/enums/enums2.py +3 -0
  112. pythonlings/curriculum/checks/enums/enums3.py +3 -0
  113. pythonlings/curriculum/checks/enums/enums4.py +2 -0
  114. pythonlings/curriculum/checks/enums/enums5.py +4 -0
  115. pythonlings/curriculum/checks/enums/enums6.py +3 -0
  116. pythonlings/curriculum/checks/exceptions/exceptions1.py +4 -0
  117. pythonlings/curriculum/checks/exceptions/exceptions10.py +39 -0
  118. pythonlings/curriculum/checks/exceptions/exceptions2.py +5 -0
  119. pythonlings/curriculum/checks/exceptions/exceptions3.py +8 -0
  120. pythonlings/curriculum/checks/exceptions/exceptions4.py +5 -0
  121. pythonlings/curriculum/checks/exceptions/exceptions5.py +10 -0
  122. pythonlings/curriculum/checks/exceptions/exceptions6.py +17 -0
  123. pythonlings/curriculum/checks/exceptions/exceptions7.py +15 -0
  124. pythonlings/curriculum/checks/exceptions/exceptions8.py +6 -0
  125. pythonlings/curriculum/checks/exceptions/exceptions9.py +16 -0
  126. pythonlings/curriculum/checks/file_io/file_io1.py +15 -0
  127. pythonlings/curriculum/checks/file_io/file_io10.py +16 -0
  128. pythonlings/curriculum/checks/file_io/file_io2.py +10 -0
  129. pythonlings/curriculum/checks/file_io/file_io3.py +15 -0
  130. pythonlings/curriculum/checks/file_io/file_io4.py +14 -0
  131. pythonlings/curriculum/checks/file_io/file_io5.py +15 -0
  132. pythonlings/curriculum/checks/file_io/file_io6.py +10 -0
  133. pythonlings/curriculum/checks/file_io/file_io7.py +15 -0
  134. pythonlings/curriculum/checks/file_io/file_io8.py +12 -0
  135. pythonlings/curriculum/checks/file_io/file_io9.py +10 -0
  136. pythonlings/curriculum/checks/functional/functional1.py +4 -0
  137. pythonlings/curriculum/checks/functional/functional10.py +7 -0
  138. pythonlings/curriculum/checks/functional/functional2.py +5 -0
  139. pythonlings/curriculum/checks/functional/functional3.py +3 -0
  140. pythonlings/curriculum/checks/functional/functional4.py +4 -0
  141. pythonlings/curriculum/checks/functional/functional5.py +6 -0
  142. pythonlings/curriculum/checks/functional/functional6.py +8 -0
  143. pythonlings/curriculum/checks/functional/functional7.py +8 -0
  144. pythonlings/curriculum/checks/functional/functional8.py +7 -0
  145. pythonlings/curriculum/checks/functional/functional9.py +8 -0
  146. pythonlings/curriculum/checks/functions/functions1.py +9 -0
  147. pythonlings/curriculum/checks/functions/functions10.py +12 -0
  148. pythonlings/curriculum/checks/functions/functions2.py +4 -0
  149. pythonlings/curriculum/checks/functions/functions3.py +6 -0
  150. pythonlings/curriculum/checks/functions/functions4.py +6 -0
  151. pythonlings/curriculum/checks/functions/functions5.py +6 -0
  152. pythonlings/curriculum/checks/functions/functions6.py +8 -0
  153. pythonlings/curriculum/checks/functions/functions7.py +7 -0
  154. pythonlings/curriculum/checks/functions/functions8.py +6 -0
  155. pythonlings/curriculum/checks/functions/functions9.py +7 -0
  156. pythonlings/curriculum/checks/generators/generators1.py +4 -0
  157. pythonlings/curriculum/checks/generators/generators10.py +7 -0
  158. pythonlings/curriculum/checks/generators/generators2.py +3 -0
  159. pythonlings/curriculum/checks/generators/generators3.py +4 -0
  160. pythonlings/curriculum/checks/generators/generators4.py +9 -0
  161. pythonlings/curriculum/checks/generators/generators5.py +10 -0
  162. pythonlings/curriculum/checks/generators/generators6.py +8 -0
  163. pythonlings/curriculum/checks/generators/generators7.py +11 -0
  164. pythonlings/curriculum/checks/generators/generators8.py +8 -0
  165. pythonlings/curriculum/checks/generators/generators9.py +13 -0
  166. pythonlings/curriculum/checks/itertools/itertools1.py +2 -0
  167. pythonlings/curriculum/checks/itertools/itertools2.py +2 -0
  168. pythonlings/curriculum/checks/itertools/itertools3.py +2 -0
  169. pythonlings/curriculum/checks/itertools/itertools4.py +2 -0
  170. pythonlings/curriculum/checks/itertools/itertools5.py +2 -0
  171. pythonlings/curriculum/checks/itertools/itertools6.py +2 -0
  172. pythonlings/curriculum/checks/itertools/itertools7.py +2 -0
  173. pythonlings/curriculum/checks/itertools/itertools8.py +3 -0
  174. pythonlings/curriculum/checks/json/json1.py +3 -0
  175. pythonlings/curriculum/checks/json/json2.py +2 -0
  176. pythonlings/curriculum/checks/json/json3.py +2 -0
  177. pythonlings/curriculum/checks/json/json4.py +2 -0
  178. pythonlings/curriculum/checks/json/json5.py +2 -0
  179. pythonlings/curriculum/checks/json/json6.py +2 -0
  180. pythonlings/curriculum/checks/json/json7.py +3 -0
  181. pythonlings/curriculum/checks/json/json8.py +4 -0
  182. pythonlings/curriculum/checks/lists/lists1.py +2 -0
  183. pythonlings/curriculum/checks/lists/lists10.py +5 -0
  184. pythonlings/curriculum/checks/lists/lists2.py +3 -0
  185. pythonlings/curriculum/checks/lists/lists3.py +4 -0
  186. pythonlings/curriculum/checks/lists/lists4.py +3 -0
  187. pythonlings/curriculum/checks/lists/lists5.py +4 -0
  188. pythonlings/curriculum/checks/lists/lists6.py +3 -0
  189. pythonlings/curriculum/checks/lists/lists7.py +4 -0
  190. pythonlings/curriculum/checks/lists/lists8.py +7 -0
  191. pythonlings/curriculum/checks/lists/lists9.py +4 -0
  192. pythonlings/curriculum/checks/loops/loops1.py +2 -0
  193. pythonlings/curriculum/checks/loops/loops10.py +6 -0
  194. pythonlings/curriculum/checks/loops/loops2.py +2 -0
  195. pythonlings/curriculum/checks/loops/loops3.py +2 -0
  196. pythonlings/curriculum/checks/loops/loops4.py +3 -0
  197. pythonlings/curriculum/checks/loops/loops5.py +2 -0
  198. pythonlings/curriculum/checks/loops/loops6.py +2 -0
  199. pythonlings/curriculum/checks/loops/loops7.py +2 -0
  200. pythonlings/curriculum/checks/loops/loops8.py +2 -0
  201. pythonlings/curriculum/checks/loops/loops9.py +3 -0
  202. pythonlings/curriculum/checks/modules/modules1.py +2 -0
  203. pythonlings/curriculum/checks/modules/modules2.py +2 -0
  204. pythonlings/curriculum/checks/modules/modules3.py +5 -0
  205. pythonlings/curriculum/checks/modules/modules4.py +8 -0
  206. pythonlings/curriculum/checks/modules/modules5.py +7 -0
  207. pythonlings/curriculum/checks/modules/modules6.py +4 -0
  208. pythonlings/curriculum/checks/modules/modules7.py +4 -0
  209. pythonlings/curriculum/checks/modules/modules8.py +15 -0
  210. pythonlings/curriculum/checks/oop_advanced/oop_advanced1.py +4 -0
  211. pythonlings/curriculum/checks/oop_advanced/oop_advanced10.py +3 -0
  212. pythonlings/curriculum/checks/oop_advanced/oop_advanced11.py +3 -0
  213. pythonlings/curriculum/checks/oop_advanced/oop_advanced12.py +4 -0
  214. pythonlings/curriculum/checks/oop_advanced/oop_advanced2.py +4 -0
  215. pythonlings/curriculum/checks/oop_advanced/oop_advanced3.py +3 -0
  216. pythonlings/curriculum/checks/oop_advanced/oop_advanced4.py +3 -0
  217. pythonlings/curriculum/checks/oop_advanced/oop_advanced5.py +3 -0
  218. pythonlings/curriculum/checks/oop_advanced/oop_advanced6.py +2 -0
  219. pythonlings/curriculum/checks/oop_advanced/oop_advanced7.py +3 -0
  220. pythonlings/curriculum/checks/oop_advanced/oop_advanced8.py +3 -0
  221. pythonlings/curriculum/checks/oop_advanced/oop_advanced9.py +4 -0
  222. pythonlings/curriculum/checks/pathlib/pathlib1.py +5 -0
  223. pythonlings/curriculum/checks/pathlib/pathlib2.py +4 -0
  224. pythonlings/curriculum/checks/pathlib/pathlib3.py +6 -0
  225. pythonlings/curriculum/checks/pathlib/pathlib4.py +4 -0
  226. pythonlings/curriculum/checks/pathlib/pathlib5.py +4 -0
  227. pythonlings/curriculum/checks/pathlib/pathlib6.py +5 -0
  228. pythonlings/curriculum/checks/recursion/recursion1.py +5 -0
  229. pythonlings/curriculum/checks/recursion/recursion2.py +5 -0
  230. pythonlings/curriculum/checks/recursion/recursion3.py +6 -0
  231. pythonlings/curriculum/checks/recursion/recursion4.py +6 -0
  232. pythonlings/curriculum/checks/recursion/recursion5.py +7 -0
  233. pythonlings/curriculum/checks/recursion/recursion6.py +7 -0
  234. pythonlings/curriculum/checks/recursion/recursion7.py +7 -0
  235. pythonlings/curriculum/checks/recursion/recursion8.py +15 -0
  236. pythonlings/curriculum/checks/regex/regex1.py +3 -0
  237. pythonlings/curriculum/checks/regex/regex10.py +17 -0
  238. pythonlings/curriculum/checks/regex/regex2.py +3 -0
  239. pythonlings/curriculum/checks/regex/regex3.py +2 -0
  240. pythonlings/curriculum/checks/regex/regex4.py +4 -0
  241. pythonlings/curriculum/checks/regex/regex5.py +4 -0
  242. pythonlings/curriculum/checks/regex/regex6.py +6 -0
  243. pythonlings/curriculum/checks/regex/regex7.py +5 -0
  244. pythonlings/curriculum/checks/regex/regex8.py +6 -0
  245. pythonlings/curriculum/checks/regex/regex9.py +8 -0
  246. pythonlings/curriculum/checks/sets/sets1.py +3 -0
  247. pythonlings/curriculum/checks/sets/sets10.py +15 -0
  248. pythonlings/curriculum/checks/sets/sets2.py +5 -0
  249. pythonlings/curriculum/checks/sets/sets3.py +5 -0
  250. pythonlings/curriculum/checks/sets/sets4.py +3 -0
  251. pythonlings/curriculum/checks/sets/sets5.py +3 -0
  252. pythonlings/curriculum/checks/sets/sets6.py +3 -0
  253. pythonlings/curriculum/checks/sets/sets7.py +5 -0
  254. pythonlings/curriculum/checks/sets/sets8.py +5 -0
  255. pythonlings/curriculum/checks/sets/sets9.py +3 -0
  256. pythonlings/curriculum/checks/strings/strings1.py +3 -0
  257. pythonlings/curriculum/checks/strings/strings10.py +5 -0
  258. pythonlings/curriculum/checks/strings/strings2.py +3 -0
  259. pythonlings/curriculum/checks/strings/strings3.py +3 -0
  260. pythonlings/curriculum/checks/strings/strings4.py +2 -0
  261. pythonlings/curriculum/checks/strings/strings5.py +4 -0
  262. pythonlings/curriculum/checks/strings/strings6.py +3 -0
  263. pythonlings/curriculum/checks/strings/strings7.py +3 -0
  264. pythonlings/curriculum/checks/strings/strings8.py +3 -0
  265. pythonlings/curriculum/checks/strings/strings9.py +3 -0
  266. pythonlings/curriculum/checks/testing/testing1.py +2 -0
  267. pythonlings/curriculum/checks/testing/testing10.py +9 -0
  268. pythonlings/curriculum/checks/testing/testing11.py +7 -0
  269. pythonlings/curriculum/checks/testing/testing12.py +19 -0
  270. pythonlings/curriculum/checks/testing/testing2.py +2 -0
  271. pythonlings/curriculum/checks/testing/testing3.py +12 -0
  272. pythonlings/curriculum/checks/testing/testing4.py +6 -0
  273. pythonlings/curriculum/checks/testing/testing5.py +6 -0
  274. pythonlings/curriculum/checks/testing/testing6.py +14 -0
  275. pythonlings/curriculum/checks/testing/testing7.py +14 -0
  276. pythonlings/curriculum/checks/testing/testing8.py +27 -0
  277. pythonlings/curriculum/checks/testing/testing9.py +14 -0
  278. pythonlings/curriculum/checks/tuples/tuples1.py +3 -0
  279. pythonlings/curriculum/checks/tuples/tuples10.py +6 -0
  280. pythonlings/curriculum/checks/tuples/tuples2.py +3 -0
  281. pythonlings/curriculum/checks/tuples/tuples3.py +4 -0
  282. pythonlings/curriculum/checks/tuples/tuples4.py +3 -0
  283. pythonlings/curriculum/checks/tuples/tuples5.py +4 -0
  284. pythonlings/curriculum/checks/tuples/tuples6.py +5 -0
  285. pythonlings/curriculum/checks/tuples/tuples7.py +3 -0
  286. pythonlings/curriculum/checks/tuples/tuples8.py +4 -0
  287. pythonlings/curriculum/checks/tuples/tuples9.py +5 -0
  288. pythonlings/curriculum/checks/type_hints/type_hints1.py +3 -0
  289. pythonlings/curriculum/checks/type_hints/type_hints2.py +5 -0
  290. pythonlings/curriculum/checks/type_hints/type_hints3.py +5 -0
  291. pythonlings/curriculum/checks/type_hints/type_hints4.py +5 -0
  292. pythonlings/curriculum/checks/type_hints/type_hints5.py +6 -0
  293. pythonlings/curriculum/checks/type_hints/type_hints6.py +7 -0
  294. pythonlings/curriculum/checks/type_hints/type_hints7.py +9 -0
  295. pythonlings/curriculum/checks/type_hints/type_hints8.py +9 -0
  296. pythonlings/curriculum/checks/variables/variables1.py +7 -0
  297. pythonlings/curriculum/checks/variables/variables10.py +4 -0
  298. pythonlings/curriculum/checks/variables/variables2.py +19 -0
  299. pythonlings/curriculum/checks/variables/variables3.py +4 -0
  300. pythonlings/curriculum/checks/variables/variables4.py +2 -0
  301. pythonlings/curriculum/checks/variables/variables5.py +2 -0
  302. pythonlings/curriculum/checks/variables/variables6.py +4 -0
  303. pythonlings/curriculum/checks/variables/variables7.py +3 -0
  304. pythonlings/curriculum/checks/variables/variables8.py +4 -0
  305. pythonlings/curriculum/checks/variables/variables9.py +3 -0
  306. pythonlings/curriculum/exercises/async/async1.py +7 -0
  307. pythonlings/curriculum/exercises/async/async10.py +14 -0
  308. pythonlings/curriculum/exercises/async/async2.py +10 -0
  309. pythonlings/curriculum/exercises/async/async3.py +10 -0
  310. pythonlings/curriculum/exercises/async/async4.py +15 -0
  311. pythonlings/curriculum/exercises/async/async5.py +13 -0
  312. pythonlings/curriculum/exercises/async/async6.py +14 -0
  313. pythonlings/curriculum/exercises/async/async7.py +13 -0
  314. pythonlings/curriculum/exercises/async/async8.py +11 -0
  315. pythonlings/curriculum/exercises/async/async9.py +13 -0
  316. pythonlings/curriculum/exercises/classes/classes1.py +13 -0
  317. pythonlings/curriculum/exercises/classes/classes10.py +22 -0
  318. pythonlings/curriculum/exercises/classes/classes11.py +24 -0
  319. pythonlings/curriculum/exercises/classes/classes12.py +33 -0
  320. pythonlings/curriculum/exercises/classes/classes2.py +13 -0
  321. pythonlings/curriculum/exercises/classes/classes3.py +13 -0
  322. pythonlings/curriculum/exercises/classes/classes4.py +16 -0
  323. pythonlings/curriculum/exercises/classes/classes5.py +18 -0
  324. pythonlings/curriculum/exercises/classes/classes6.py +15 -0
  325. pythonlings/curriculum/exercises/classes/classes7.py +18 -0
  326. pythonlings/curriculum/exercises/classes/classes8.py +14 -0
  327. pythonlings/curriculum/exercises/classes/classes9.py +18 -0
  328. pythonlings/curriculum/exercises/collections/collections1.py +11 -0
  329. pythonlings/curriculum/exercises/collections/collections10.py +37 -0
  330. pythonlings/curriculum/exercises/collections/collections2.py +18 -0
  331. pythonlings/curriculum/exercises/collections/collections3.py +17 -0
  332. pythonlings/curriculum/exercises/collections/collections4.py +26 -0
  333. pythonlings/curriculum/exercises/collections/collections5.py +14 -0
  334. pythonlings/curriculum/exercises/collections/collections6.py +18 -0
  335. pythonlings/curriculum/exercises/collections/collections7.py +20 -0
  336. pythonlings/curriculum/exercises/collections/collections8.py +23 -0
  337. pythonlings/curriculum/exercises/collections/collections9.py +21 -0
  338. pythonlings/curriculum/exercises/comprehensions/comprehensions1.py +10 -0
  339. pythonlings/curriculum/exercises/comprehensions/comprehensions10.py +15 -0
  340. pythonlings/curriculum/exercises/comprehensions/comprehensions2.py +12 -0
  341. pythonlings/curriculum/exercises/comprehensions/comprehensions3.py +12 -0
  342. pythonlings/curriculum/exercises/comprehensions/comprehensions4.py +14 -0
  343. pythonlings/curriculum/exercises/comprehensions/comprehensions5.py +12 -0
  344. pythonlings/curriculum/exercises/comprehensions/comprehensions6.py +12 -0
  345. pythonlings/curriculum/exercises/comprehensions/comprehensions7.py +12 -0
  346. pythonlings/curriculum/exercises/comprehensions/comprehensions8.py +15 -0
  347. pythonlings/curriculum/exercises/comprehensions/comprehensions9.py +13 -0
  348. pythonlings/curriculum/exercises/conditionals/conditionals1.py +15 -0
  349. pythonlings/curriculum/exercises/conditionals/conditionals10.py +18 -0
  350. pythonlings/curriculum/exercises/conditionals/conditionals2.py +13 -0
  351. pythonlings/curriculum/exercises/conditionals/conditionals3.py +18 -0
  352. pythonlings/curriculum/exercises/conditionals/conditionals4.py +20 -0
  353. pythonlings/curriculum/exercises/conditionals/conditionals5.py +17 -0
  354. pythonlings/curriculum/exercises/conditionals/conditionals6.py +15 -0
  355. pythonlings/curriculum/exercises/conditionals/conditionals7.py +18 -0
  356. pythonlings/curriculum/exercises/conditionals/conditionals8.py +20 -0
  357. pythonlings/curriculum/exercises/conditionals/conditionals9.py +12 -0
  358. pythonlings/curriculum/exercises/context_managers/context_managers1.py +18 -0
  359. pythonlings/curriculum/exercises/context_managers/context_managers2.py +19 -0
  360. pythonlings/curriculum/exercises/context_managers/context_managers3.py +24 -0
  361. pythonlings/curriculum/exercises/context_managers/context_managers4.py +30 -0
  362. pythonlings/curriculum/exercises/context_managers/context_managers5.py +30 -0
  363. pythonlings/curriculum/exercises/context_managers/context_managers6.py +26 -0
  364. pythonlings/curriculum/exercises/context_managers/context_managers7.py +30 -0
  365. pythonlings/curriculum/exercises/context_managers/context_managers8.py +45 -0
  366. pythonlings/curriculum/exercises/dataclasses/dataclasses1.py +14 -0
  367. pythonlings/curriculum/exercises/dataclasses/dataclasses2.py +23 -0
  368. pythonlings/curriculum/exercises/dataclasses/dataclasses3.py +21 -0
  369. pythonlings/curriculum/exercises/dataclasses/dataclasses4.py +25 -0
  370. pythonlings/curriculum/exercises/dataclasses/dataclasses5.py +25 -0
  371. pythonlings/curriculum/exercises/dataclasses/dataclasses6.py +21 -0
  372. pythonlings/curriculum/exercises/dataclasses/dataclasses7.py +27 -0
  373. pythonlings/curriculum/exercises/dataclasses/dataclasses8.py +30 -0
  374. pythonlings/curriculum/exercises/datetime/datetime1.py +8 -0
  375. pythonlings/curriculum/exercises/datetime/datetime2.py +9 -0
  376. pythonlings/curriculum/exercises/datetime/datetime3.py +9 -0
  377. pythonlings/curriculum/exercises/datetime/datetime4.py +9 -0
  378. pythonlings/curriculum/exercises/datetime/datetime5.py +10 -0
  379. pythonlings/curriculum/exercises/datetime/datetime6.py +10 -0
  380. pythonlings/curriculum/exercises/datetime/datetime7.py +10 -0
  381. pythonlings/curriculum/exercises/datetime/datetime8.py +11 -0
  382. pythonlings/curriculum/exercises/decorators/decorators1.py +19 -0
  383. pythonlings/curriculum/exercises/decorators/decorators10.py +32 -0
  384. pythonlings/curriculum/exercises/decorators/decorators2.py +22 -0
  385. pythonlings/curriculum/exercises/decorators/decorators3.py +18 -0
  386. pythonlings/curriculum/exercises/decorators/decorators4.py +24 -0
  387. pythonlings/curriculum/exercises/decorators/decorators5.py +25 -0
  388. pythonlings/curriculum/exercises/decorators/decorators6.py +19 -0
  389. pythonlings/curriculum/exercises/decorators/decorators7.py +25 -0
  390. pythonlings/curriculum/exercises/decorators/decorators8.py +25 -0
  391. pythonlings/curriculum/exercises/decorators/decorators9.py +26 -0
  392. pythonlings/curriculum/exercises/dictionaries/dictionaries1.py +6 -0
  393. pythonlings/curriculum/exercises/dictionaries/dictionaries10.py +17 -0
  394. pythonlings/curriculum/exercises/dictionaries/dictionaries2.py +9 -0
  395. pythonlings/curriculum/exercises/dictionaries/dictionaries3.py +16 -0
  396. pythonlings/curriculum/exercises/dictionaries/dictionaries4.py +15 -0
  397. pythonlings/curriculum/exercises/dictionaries/dictionaries5.py +15 -0
  398. pythonlings/curriculum/exercises/dictionaries/dictionaries6.py +18 -0
  399. pythonlings/curriculum/exercises/dictionaries/dictionaries7.py +17 -0
  400. pythonlings/curriculum/exercises/dictionaries/dictionaries8.py +17 -0
  401. pythonlings/curriculum/exercises/dictionaries/dictionaries9.py +25 -0
  402. pythonlings/curriculum/exercises/enums/enums1.py +12 -0
  403. pythonlings/curriculum/exercises/enums/enums2.py +11 -0
  404. pythonlings/curriculum/exercises/enums/enums3.py +14 -0
  405. pythonlings/curriculum/exercises/enums/enums4.py +13 -0
  406. pythonlings/curriculum/exercises/enums/enums5.py +14 -0
  407. pythonlings/curriculum/exercises/enums/enums6.py +15 -0
  408. pythonlings/curriculum/exercises/exceptions/exceptions1.py +15 -0
  409. pythonlings/curriculum/exercises/exceptions/exceptions10.py +19 -0
  410. pythonlings/curriculum/exercises/exceptions/exceptions2.py +12 -0
  411. pythonlings/curriculum/exercises/exceptions/exceptions3.py +13 -0
  412. pythonlings/curriculum/exercises/exceptions/exceptions4.py +17 -0
  413. pythonlings/curriculum/exercises/exceptions/exceptions5.py +20 -0
  414. pythonlings/curriculum/exercises/exceptions/exceptions6.py +13 -0
  415. pythonlings/curriculum/exercises/exceptions/exceptions7.py +15 -0
  416. pythonlings/curriculum/exercises/exceptions/exceptions8.py +17 -0
  417. pythonlings/curriculum/exercises/exceptions/exceptions9.py +20 -0
  418. pythonlings/curriculum/exercises/file_io/file_io1.py +18 -0
  419. pythonlings/curriculum/exercises/file_io/file_io10.py +25 -0
  420. pythonlings/curriculum/exercises/file_io/file_io2.py +16 -0
  421. pythonlings/curriculum/exercises/file_io/file_io3.py +18 -0
  422. pythonlings/curriculum/exercises/file_io/file_io4.py +21 -0
  423. pythonlings/curriculum/exercises/file_io/file_io5.py +19 -0
  424. pythonlings/curriculum/exercises/file_io/file_io6.py +22 -0
  425. pythonlings/curriculum/exercises/file_io/file_io7.py +20 -0
  426. pythonlings/curriculum/exercises/file_io/file_io8.py +18 -0
  427. pythonlings/curriculum/exercises/file_io/file_io9.py +19 -0
  428. pythonlings/curriculum/exercises/functional/functional1.py +7 -0
  429. pythonlings/curriculum/exercises/functional/functional10.py +19 -0
  430. pythonlings/curriculum/exercises/functional/functional2.py +8 -0
  431. pythonlings/curriculum/exercises/functional/functional3.py +11 -0
  432. pythonlings/curriculum/exercises/functional/functional4.py +11 -0
  433. pythonlings/curriculum/exercises/functional/functional5.py +11 -0
  434. pythonlings/curriculum/exercises/functional/functional6.py +14 -0
  435. pythonlings/curriculum/exercises/functional/functional7.py +12 -0
  436. pythonlings/curriculum/exercises/functional/functional8.py +13 -0
  437. pythonlings/curriculum/exercises/functional/functional9.py +15 -0
  438. pythonlings/curriculum/exercises/functions/functions1.py +8 -0
  439. pythonlings/curriculum/exercises/functions/functions10.py +19 -0
  440. pythonlings/curriculum/exercises/functions/functions2.py +9 -0
  441. pythonlings/curriculum/exercises/functions/functions3.py +8 -0
  442. pythonlings/curriculum/exercises/functions/functions4.py +8 -0
  443. pythonlings/curriculum/exercises/functions/functions5.py +11 -0
  444. pythonlings/curriculum/exercises/functions/functions6.py +16 -0
  445. pythonlings/curriculum/exercises/functions/functions7.py +11 -0
  446. pythonlings/curriculum/exercises/functions/functions8.py +10 -0
  447. pythonlings/curriculum/exercises/functions/functions9.py +16 -0
  448. pythonlings/curriculum/exercises/generators/generators1.py +13 -0
  449. pythonlings/curriculum/exercises/generators/generators10.py +16 -0
  450. pythonlings/curriculum/exercises/generators/generators2.py +17 -0
  451. pythonlings/curriculum/exercises/generators/generators3.py +19 -0
  452. pythonlings/curriculum/exercises/generators/generators4.py +12 -0
  453. pythonlings/curriculum/exercises/generators/generators5.py +24 -0
  454. pythonlings/curriculum/exercises/generators/generators6.py +20 -0
  455. pythonlings/curriculum/exercises/generators/generators7.py +14 -0
  456. pythonlings/curriculum/exercises/generators/generators8.py +17 -0
  457. pythonlings/curriculum/exercises/generators/generators9.py +26 -0
  458. pythonlings/curriculum/exercises/itertools/itertools1.py +10 -0
  459. pythonlings/curriculum/exercises/itertools/itertools2.py +8 -0
  460. pythonlings/curriculum/exercises/itertools/itertools3.py +10 -0
  461. pythonlings/curriculum/exercises/itertools/itertools4.py +12 -0
  462. pythonlings/curriculum/exercises/itertools/itertools5.py +9 -0
  463. pythonlings/curriculum/exercises/itertools/itertools6.py +9 -0
  464. pythonlings/curriculum/exercises/itertools/itertools7.py +10 -0
  465. pythonlings/curriculum/exercises/itertools/itertools8.py +18 -0
  466. pythonlings/curriculum/exercises/json/json1.py +10 -0
  467. pythonlings/curriculum/exercises/json/json2.py +9 -0
  468. pythonlings/curriculum/exercises/json/json3.py +10 -0
  469. pythonlings/curriculum/exercises/json/json4.py +13 -0
  470. pythonlings/curriculum/exercises/json/json5.py +9 -0
  471. pythonlings/curriculum/exercises/json/json6.py +10 -0
  472. pythonlings/curriculum/exercises/json/json7.py +10 -0
  473. pythonlings/curriculum/exercises/json/json8.py +12 -0
  474. pythonlings/curriculum/exercises/lists/lists1.py +7 -0
  475. pythonlings/curriculum/exercises/lists/lists10.py +28 -0
  476. pythonlings/curriculum/exercises/lists/lists2.py +13 -0
  477. pythonlings/curriculum/exercises/lists/lists3.py +16 -0
  478. pythonlings/curriculum/exercises/lists/lists4.py +16 -0
  479. pythonlings/curriculum/exercises/lists/lists5.py +16 -0
  480. pythonlings/curriculum/exercises/lists/lists6.py +15 -0
  481. pythonlings/curriculum/exercises/lists/lists7.py +13 -0
  482. pythonlings/curriculum/exercises/lists/lists8.py +15 -0
  483. pythonlings/curriculum/exercises/lists/lists9.py +19 -0
  484. pythonlings/curriculum/exercises/loops/loops1.py +8 -0
  485. pythonlings/curriculum/exercises/loops/loops10.py +22 -0
  486. pythonlings/curriculum/exercises/loops/loops2.py +10 -0
  487. pythonlings/curriculum/exercises/loops/loops3.py +10 -0
  488. pythonlings/curriculum/exercises/loops/loops4.py +12 -0
  489. pythonlings/curriculum/exercises/loops/loops5.py +13 -0
  490. pythonlings/curriculum/exercises/loops/loops6.py +10 -0
  491. pythonlings/curriculum/exercises/loops/loops7.py +13 -0
  492. pythonlings/curriculum/exercises/loops/loops8.py +11 -0
  493. pythonlings/curriculum/exercises/loops/loops9.py +11 -0
  494. pythonlings/curriculum/exercises/modules/modules1.py +10 -0
  495. pythonlings/curriculum/exercises/modules/modules2.py +10 -0
  496. pythonlings/curriculum/exercises/modules/modules3.py +13 -0
  497. pythonlings/curriculum/exercises/modules/modules4.py +18 -0
  498. pythonlings/curriculum/exercises/modules/modules5.py +17 -0
  499. pythonlings/curriculum/exercises/modules/modules6.py +12 -0
  500. pythonlings/curriculum/exercises/modules/modules7.py +16 -0
  501. pythonlings/curriculum/exercises/modules/modules8.py +23 -0
  502. pythonlings/curriculum/exercises/oop_advanced/oop_advanced1.py +11 -0
  503. pythonlings/curriculum/exercises/oop_advanced/oop_advanced10.py +18 -0
  504. pythonlings/curriculum/exercises/oop_advanced/oop_advanced11.py +13 -0
  505. pythonlings/curriculum/exercises/oop_advanced/oop_advanced12.py +12 -0
  506. pythonlings/curriculum/exercises/oop_advanced/oop_advanced2.py +13 -0
  507. pythonlings/curriculum/exercises/oop_advanced/oop_advanced3.py +22 -0
  508. pythonlings/curriculum/exercises/oop_advanced/oop_advanced4.py +12 -0
  509. pythonlings/curriculum/exercises/oop_advanced/oop_advanced5.py +11 -0
  510. pythonlings/curriculum/exercises/oop_advanced/oop_advanced6.py +12 -0
  511. pythonlings/curriculum/exercises/oop_advanced/oop_advanced7.py +14 -0
  512. pythonlings/curriculum/exercises/oop_advanced/oop_advanced8.py +14 -0
  513. pythonlings/curriculum/exercises/oop_advanced/oop_advanced9.py +9 -0
  514. pythonlings/curriculum/exercises/pathlib/pathlib1.py +9 -0
  515. pythonlings/curriculum/exercises/pathlib/pathlib2.py +9 -0
  516. pythonlings/curriculum/exercises/pathlib/pathlib3.py +11 -0
  517. pythonlings/curriculum/exercises/pathlib/pathlib4.py +9 -0
  518. pythonlings/curriculum/exercises/pathlib/pathlib5.py +9 -0
  519. pythonlings/curriculum/exercises/pathlib/pathlib6.py +10 -0
  520. pythonlings/curriculum/exercises/recursion/recursion1.py +12 -0
  521. pythonlings/curriculum/exercises/recursion/recursion2.py +12 -0
  522. pythonlings/curriculum/exercises/recursion/recursion3.py +12 -0
  523. pythonlings/curriculum/exercises/recursion/recursion4.py +12 -0
  524. pythonlings/curriculum/exercises/recursion/recursion5.py +14 -0
  525. pythonlings/curriculum/exercises/recursion/recursion6.py +13 -0
  526. pythonlings/curriculum/exercises/recursion/recursion7.py +20 -0
  527. pythonlings/curriculum/exercises/recursion/recursion8.py +27 -0
  528. pythonlings/curriculum/exercises/regex/regex1.py +16 -0
  529. pythonlings/curriculum/exercises/regex/regex10.py +31 -0
  530. pythonlings/curriculum/exercises/regex/regex2.py +16 -0
  531. pythonlings/curriculum/exercises/regex/regex3.py +16 -0
  532. pythonlings/curriculum/exercises/regex/regex4.py +19 -0
  533. pythonlings/curriculum/exercises/regex/regex5.py +19 -0
  534. pythonlings/curriculum/exercises/regex/regex6.py +23 -0
  535. pythonlings/curriculum/exercises/regex/regex7.py +24 -0
  536. pythonlings/curriculum/exercises/regex/regex8.py +19 -0
  537. pythonlings/curriculum/exercises/regex/regex9.py +22 -0
  538. pythonlings/curriculum/exercises/sets/sets1.py +6 -0
  539. pythonlings/curriculum/exercises/sets/sets10.py +21 -0
  540. pythonlings/curriculum/exercises/sets/sets2.py +12 -0
  541. pythonlings/curriculum/exercises/sets/sets3.py +15 -0
  542. pythonlings/curriculum/exercises/sets/sets4.py +14 -0
  543. pythonlings/curriculum/exercises/sets/sets5.py +14 -0
  544. pythonlings/curriculum/exercises/sets/sets6.py +14 -0
  545. pythonlings/curriculum/exercises/sets/sets7.py +16 -0
  546. pythonlings/curriculum/exercises/sets/sets8.py +16 -0
  547. pythonlings/curriculum/exercises/sets/sets9.py +15 -0
  548. pythonlings/curriculum/exercises/strings/strings1.py +6 -0
  549. pythonlings/curriculum/exercises/strings/strings10.py +11 -0
  550. pythonlings/curriculum/exercises/strings/strings2.py +9 -0
  551. pythonlings/curriculum/exercises/strings/strings3.py +9 -0
  552. pythonlings/curriculum/exercises/strings/strings4.py +8 -0
  553. pythonlings/curriculum/exercises/strings/strings5.py +10 -0
  554. pythonlings/curriculum/exercises/strings/strings6.py +10 -0
  555. pythonlings/curriculum/exercises/strings/strings7.py +10 -0
  556. pythonlings/curriculum/exercises/strings/strings8.py +9 -0
  557. pythonlings/curriculum/exercises/strings/strings9.py +10 -0
  558. pythonlings/curriculum/exercises/testing/testing1.py +16 -0
  559. pythonlings/curriculum/exercises/testing/testing10.py +21 -0
  560. pythonlings/curriculum/exercises/testing/testing11.py +27 -0
  561. pythonlings/curriculum/exercises/testing/testing12.py +51 -0
  562. pythonlings/curriculum/exercises/testing/testing2.py +15 -0
  563. pythonlings/curriculum/exercises/testing/testing3.py +19 -0
  564. pythonlings/curriculum/exercises/testing/testing4.py +19 -0
  565. pythonlings/curriculum/exercises/testing/testing5.py +18 -0
  566. pythonlings/curriculum/exercises/testing/testing6.py +27 -0
  567. pythonlings/curriculum/exercises/testing/testing7.py +27 -0
  568. pythonlings/curriculum/exercises/testing/testing8.py +29 -0
  569. pythonlings/curriculum/exercises/testing/testing9.py +30 -0
  570. pythonlings/curriculum/exercises/tuples/tuples1.py +7 -0
  571. pythonlings/curriculum/exercises/tuples/tuples10.py +26 -0
  572. pythonlings/curriculum/exercises/tuples/tuples2.py +11 -0
  573. pythonlings/curriculum/exercises/tuples/tuples3.py +9 -0
  574. pythonlings/curriculum/exercises/tuples/tuples4.py +8 -0
  575. pythonlings/curriculum/exercises/tuples/tuples5.py +12 -0
  576. pythonlings/curriculum/exercises/tuples/tuples6.py +15 -0
  577. pythonlings/curriculum/exercises/tuples/tuples7.py +14 -0
  578. pythonlings/curriculum/exercises/tuples/tuples8.py +13 -0
  579. pythonlings/curriculum/exercises/tuples/tuples9.py +18 -0
  580. pythonlings/curriculum/exercises/type_hints/type_hints1.py +9 -0
  581. pythonlings/curriculum/exercises/type_hints/type_hints2.py +13 -0
  582. pythonlings/curriculum/exercises/type_hints/type_hints3.py +13 -0
  583. pythonlings/curriculum/exercises/type_hints/type_hints4.py +21 -0
  584. pythonlings/curriculum/exercises/type_hints/type_hints5.py +15 -0
  585. pythonlings/curriculum/exercises/type_hints/type_hints6.py +16 -0
  586. pythonlings/curriculum/exercises/type_hints/type_hints7.py +19 -0
  587. pythonlings/curriculum/exercises/type_hints/type_hints8.py +27 -0
  588. pythonlings/curriculum/exercises/variables/variables1.py +10 -0
  589. pythonlings/curriculum/exercises/variables/variables10.py +14 -0
  590. pythonlings/curriculum/exercises/variables/variables2.py +11 -0
  591. pythonlings/curriculum/exercises/variables/variables3.py +11 -0
  592. pythonlings/curriculum/exercises/variables/variables4.py +9 -0
  593. pythonlings/curriculum/exercises/variables/variables5.py +11 -0
  594. pythonlings/curriculum/exercises/variables/variables6.py +9 -0
  595. pythonlings/curriculum/exercises/variables/variables7.py +10 -0
  596. pythonlings/curriculum/exercises/variables/variables8.py +12 -0
  597. pythonlings/curriculum/exercises/variables/variables9.py +10 -0
  598. pythonlings/curriculum/info.toml +1755 -0
  599. pythonlings/curriculum/solutions/.keep +1 -0
  600. pythonlings/curriculum/solutions/_answers.py +1654 -0
  601. pythonlings/curriculum/solutions/async1.py +2 -0
  602. pythonlings/curriculum/solutions/async10.py +2 -0
  603. pythonlings/curriculum/solutions/async2.py +2 -0
  604. pythonlings/curriculum/solutions/async3.py +2 -0
  605. pythonlings/curriculum/solutions/async4.py +2 -0
  606. pythonlings/curriculum/solutions/async5.py +2 -0
  607. pythonlings/curriculum/solutions/async6.py +2 -0
  608. pythonlings/curriculum/solutions/async7.py +2 -0
  609. pythonlings/curriculum/solutions/async8.py +2 -0
  610. pythonlings/curriculum/solutions/async9.py +2 -0
  611. pythonlings/curriculum/solutions/classes1.py +2 -0
  612. pythonlings/curriculum/solutions/classes10.py +2 -0
  613. pythonlings/curriculum/solutions/classes11.py +2 -0
  614. pythonlings/curriculum/solutions/classes12.py +2 -0
  615. pythonlings/curriculum/solutions/classes2.py +2 -0
  616. pythonlings/curriculum/solutions/classes3.py +2 -0
  617. pythonlings/curriculum/solutions/classes4.py +2 -0
  618. pythonlings/curriculum/solutions/classes5.py +2 -0
  619. pythonlings/curriculum/solutions/classes6.py +2 -0
  620. pythonlings/curriculum/solutions/classes7.py +2 -0
  621. pythonlings/curriculum/solutions/classes8.py +2 -0
  622. pythonlings/curriculum/solutions/classes9.py +2 -0
  623. pythonlings/curriculum/solutions/collections1.py +2 -0
  624. pythonlings/curriculum/solutions/collections10.py +2 -0
  625. pythonlings/curriculum/solutions/collections2.py +2 -0
  626. pythonlings/curriculum/solutions/collections3.py +2 -0
  627. pythonlings/curriculum/solutions/collections4.py +2 -0
  628. pythonlings/curriculum/solutions/collections5.py +2 -0
  629. pythonlings/curriculum/solutions/collections6.py +2 -0
  630. pythonlings/curriculum/solutions/collections7.py +2 -0
  631. pythonlings/curriculum/solutions/collections8.py +2 -0
  632. pythonlings/curriculum/solutions/collections9.py +2 -0
  633. pythonlings/curriculum/solutions/comprehensions1.py +2 -0
  634. pythonlings/curriculum/solutions/comprehensions10.py +2 -0
  635. pythonlings/curriculum/solutions/comprehensions2.py +2 -0
  636. pythonlings/curriculum/solutions/comprehensions3.py +2 -0
  637. pythonlings/curriculum/solutions/comprehensions4.py +2 -0
  638. pythonlings/curriculum/solutions/comprehensions5.py +2 -0
  639. pythonlings/curriculum/solutions/comprehensions6.py +2 -0
  640. pythonlings/curriculum/solutions/comprehensions7.py +2 -0
  641. pythonlings/curriculum/solutions/comprehensions8.py +2 -0
  642. pythonlings/curriculum/solutions/comprehensions9.py +2 -0
  643. pythonlings/curriculum/solutions/conditionals1.py +2 -0
  644. pythonlings/curriculum/solutions/conditionals10.py +2 -0
  645. pythonlings/curriculum/solutions/conditionals2.py +2 -0
  646. pythonlings/curriculum/solutions/conditionals3.py +2 -0
  647. pythonlings/curriculum/solutions/conditionals4.py +2 -0
  648. pythonlings/curriculum/solutions/conditionals5.py +2 -0
  649. pythonlings/curriculum/solutions/conditionals6.py +2 -0
  650. pythonlings/curriculum/solutions/conditionals7.py +2 -0
  651. pythonlings/curriculum/solutions/conditionals8.py +2 -0
  652. pythonlings/curriculum/solutions/conditionals9.py +2 -0
  653. pythonlings/curriculum/solutions/context_managers1.py +2 -0
  654. pythonlings/curriculum/solutions/context_managers2.py +2 -0
  655. pythonlings/curriculum/solutions/context_managers3.py +2 -0
  656. pythonlings/curriculum/solutions/context_managers4.py +2 -0
  657. pythonlings/curriculum/solutions/context_managers5.py +2 -0
  658. pythonlings/curriculum/solutions/context_managers6.py +2 -0
  659. pythonlings/curriculum/solutions/context_managers7.py +2 -0
  660. pythonlings/curriculum/solutions/context_managers8.py +2 -0
  661. pythonlings/curriculum/solutions/dataclasses1.py +2 -0
  662. pythonlings/curriculum/solutions/dataclasses2.py +2 -0
  663. pythonlings/curriculum/solutions/dataclasses3.py +2 -0
  664. pythonlings/curriculum/solutions/dataclasses4.py +2 -0
  665. pythonlings/curriculum/solutions/dataclasses5.py +2 -0
  666. pythonlings/curriculum/solutions/dataclasses6.py +2 -0
  667. pythonlings/curriculum/solutions/dataclasses7.py +2 -0
  668. pythonlings/curriculum/solutions/dataclasses8.py +2 -0
  669. pythonlings/curriculum/solutions/datetime1.py +2 -0
  670. pythonlings/curriculum/solutions/datetime2.py +2 -0
  671. pythonlings/curriculum/solutions/datetime3.py +2 -0
  672. pythonlings/curriculum/solutions/datetime4.py +2 -0
  673. pythonlings/curriculum/solutions/datetime5.py +2 -0
  674. pythonlings/curriculum/solutions/datetime6.py +2 -0
  675. pythonlings/curriculum/solutions/datetime7.py +2 -0
  676. pythonlings/curriculum/solutions/datetime8.py +2 -0
  677. pythonlings/curriculum/solutions/decorators1.py +2 -0
  678. pythonlings/curriculum/solutions/decorators10.py +2 -0
  679. pythonlings/curriculum/solutions/decorators2.py +2 -0
  680. pythonlings/curriculum/solutions/decorators3.py +2 -0
  681. pythonlings/curriculum/solutions/decorators4.py +2 -0
  682. pythonlings/curriculum/solutions/decorators5.py +2 -0
  683. pythonlings/curriculum/solutions/decorators6.py +2 -0
  684. pythonlings/curriculum/solutions/decorators7.py +2 -0
  685. pythonlings/curriculum/solutions/decorators8.py +2 -0
  686. pythonlings/curriculum/solutions/decorators9.py +2 -0
  687. pythonlings/curriculum/solutions/dictionaries1.py +2 -0
  688. pythonlings/curriculum/solutions/dictionaries10.py +2 -0
  689. pythonlings/curriculum/solutions/dictionaries2.py +2 -0
  690. pythonlings/curriculum/solutions/dictionaries3.py +2 -0
  691. pythonlings/curriculum/solutions/dictionaries4.py +2 -0
  692. pythonlings/curriculum/solutions/dictionaries5.py +2 -0
  693. pythonlings/curriculum/solutions/dictionaries6.py +2 -0
  694. pythonlings/curriculum/solutions/dictionaries7.py +2 -0
  695. pythonlings/curriculum/solutions/dictionaries8.py +2 -0
  696. pythonlings/curriculum/solutions/dictionaries9.py +2 -0
  697. pythonlings/curriculum/solutions/enums1.py +2 -0
  698. pythonlings/curriculum/solutions/enums2.py +2 -0
  699. pythonlings/curriculum/solutions/enums3.py +2 -0
  700. pythonlings/curriculum/solutions/enums4.py +2 -0
  701. pythonlings/curriculum/solutions/enums5.py +2 -0
  702. pythonlings/curriculum/solutions/enums6.py +2 -0
  703. pythonlings/curriculum/solutions/exceptions1.py +2 -0
  704. pythonlings/curriculum/solutions/exceptions10.py +2 -0
  705. pythonlings/curriculum/solutions/exceptions2.py +2 -0
  706. pythonlings/curriculum/solutions/exceptions3.py +2 -0
  707. pythonlings/curriculum/solutions/exceptions4.py +2 -0
  708. pythonlings/curriculum/solutions/exceptions5.py +2 -0
  709. pythonlings/curriculum/solutions/exceptions6.py +2 -0
  710. pythonlings/curriculum/solutions/exceptions7.py +2 -0
  711. pythonlings/curriculum/solutions/exceptions8.py +2 -0
  712. pythonlings/curriculum/solutions/exceptions9.py +2 -0
  713. pythonlings/curriculum/solutions/file_io1.py +2 -0
  714. pythonlings/curriculum/solutions/file_io10.py +2 -0
  715. pythonlings/curriculum/solutions/file_io2.py +2 -0
  716. pythonlings/curriculum/solutions/file_io3.py +2 -0
  717. pythonlings/curriculum/solutions/file_io4.py +2 -0
  718. pythonlings/curriculum/solutions/file_io5.py +2 -0
  719. pythonlings/curriculum/solutions/file_io6.py +2 -0
  720. pythonlings/curriculum/solutions/file_io7.py +2 -0
  721. pythonlings/curriculum/solutions/file_io8.py +2 -0
  722. pythonlings/curriculum/solutions/file_io9.py +2 -0
  723. pythonlings/curriculum/solutions/functional1.py +2 -0
  724. pythonlings/curriculum/solutions/functional10.py +2 -0
  725. pythonlings/curriculum/solutions/functional2.py +2 -0
  726. pythonlings/curriculum/solutions/functional3.py +2 -0
  727. pythonlings/curriculum/solutions/functional4.py +2 -0
  728. pythonlings/curriculum/solutions/functional5.py +2 -0
  729. pythonlings/curriculum/solutions/functional6.py +2 -0
  730. pythonlings/curriculum/solutions/functional7.py +2 -0
  731. pythonlings/curriculum/solutions/functional8.py +2 -0
  732. pythonlings/curriculum/solutions/functional9.py +2 -0
  733. pythonlings/curriculum/solutions/functions1.py +2 -0
  734. pythonlings/curriculum/solutions/functions10.py +2 -0
  735. pythonlings/curriculum/solutions/functions2.py +2 -0
  736. pythonlings/curriculum/solutions/functions3.py +2 -0
  737. pythonlings/curriculum/solutions/functions4.py +2 -0
  738. pythonlings/curriculum/solutions/functions5.py +2 -0
  739. pythonlings/curriculum/solutions/functions6.py +2 -0
  740. pythonlings/curriculum/solutions/functions7.py +2 -0
  741. pythonlings/curriculum/solutions/functions8.py +2 -0
  742. pythonlings/curriculum/solutions/functions9.py +2 -0
  743. pythonlings/curriculum/solutions/generators1.py +2 -0
  744. pythonlings/curriculum/solutions/generators10.py +2 -0
  745. pythonlings/curriculum/solutions/generators2.py +2 -0
  746. pythonlings/curriculum/solutions/generators3.py +2 -0
  747. pythonlings/curriculum/solutions/generators4.py +2 -0
  748. pythonlings/curriculum/solutions/generators5.py +2 -0
  749. pythonlings/curriculum/solutions/generators6.py +2 -0
  750. pythonlings/curriculum/solutions/generators7.py +2 -0
  751. pythonlings/curriculum/solutions/generators8.py +2 -0
  752. pythonlings/curriculum/solutions/generators9.py +2 -0
  753. pythonlings/curriculum/solutions/itertools1.py +2 -0
  754. pythonlings/curriculum/solutions/itertools2.py +2 -0
  755. pythonlings/curriculum/solutions/itertools3.py +2 -0
  756. pythonlings/curriculum/solutions/itertools4.py +2 -0
  757. pythonlings/curriculum/solutions/itertools5.py +2 -0
  758. pythonlings/curriculum/solutions/itertools6.py +2 -0
  759. pythonlings/curriculum/solutions/itertools7.py +2 -0
  760. pythonlings/curriculum/solutions/itertools8.py +2 -0
  761. pythonlings/curriculum/solutions/json1.py +2 -0
  762. pythonlings/curriculum/solutions/json2.py +2 -0
  763. pythonlings/curriculum/solutions/json3.py +2 -0
  764. pythonlings/curriculum/solutions/json4.py +2 -0
  765. pythonlings/curriculum/solutions/json5.py +2 -0
  766. pythonlings/curriculum/solutions/json6.py +2 -0
  767. pythonlings/curriculum/solutions/json7.py +2 -0
  768. pythonlings/curriculum/solutions/json8.py +2 -0
  769. pythonlings/curriculum/solutions/lists1.py +2 -0
  770. pythonlings/curriculum/solutions/lists10.py +2 -0
  771. pythonlings/curriculum/solutions/lists2.py +2 -0
  772. pythonlings/curriculum/solutions/lists3.py +2 -0
  773. pythonlings/curriculum/solutions/lists4.py +2 -0
  774. pythonlings/curriculum/solutions/lists5.py +2 -0
  775. pythonlings/curriculum/solutions/lists6.py +2 -0
  776. pythonlings/curriculum/solutions/lists7.py +2 -0
  777. pythonlings/curriculum/solutions/lists8.py +2 -0
  778. pythonlings/curriculum/solutions/lists9.py +2 -0
  779. pythonlings/curriculum/solutions/loops1.py +2 -0
  780. pythonlings/curriculum/solutions/loops10.py +2 -0
  781. pythonlings/curriculum/solutions/loops2.py +2 -0
  782. pythonlings/curriculum/solutions/loops3.py +2 -0
  783. pythonlings/curriculum/solutions/loops4.py +2 -0
  784. pythonlings/curriculum/solutions/loops5.py +2 -0
  785. pythonlings/curriculum/solutions/loops6.py +2 -0
  786. pythonlings/curriculum/solutions/loops7.py +2 -0
  787. pythonlings/curriculum/solutions/loops8.py +2 -0
  788. pythonlings/curriculum/solutions/loops9.py +2 -0
  789. pythonlings/curriculum/solutions/modules1.py +2 -0
  790. pythonlings/curriculum/solutions/modules2.py +2 -0
  791. pythonlings/curriculum/solutions/modules3.py +2 -0
  792. pythonlings/curriculum/solutions/modules4.py +2 -0
  793. pythonlings/curriculum/solutions/modules5.py +2 -0
  794. pythonlings/curriculum/solutions/modules6.py +2 -0
  795. pythonlings/curriculum/solutions/modules7.py +2 -0
  796. pythonlings/curriculum/solutions/modules8.py +2 -0
  797. pythonlings/curriculum/solutions/oop_advanced1.py +2 -0
  798. pythonlings/curriculum/solutions/oop_advanced10.py +2 -0
  799. pythonlings/curriculum/solutions/oop_advanced11.py +2 -0
  800. pythonlings/curriculum/solutions/oop_advanced12.py +2 -0
  801. pythonlings/curriculum/solutions/oop_advanced2.py +2 -0
  802. pythonlings/curriculum/solutions/oop_advanced3.py +2 -0
  803. pythonlings/curriculum/solutions/oop_advanced4.py +2 -0
  804. pythonlings/curriculum/solutions/oop_advanced5.py +2 -0
  805. pythonlings/curriculum/solutions/oop_advanced6.py +2 -0
  806. pythonlings/curriculum/solutions/oop_advanced7.py +2 -0
  807. pythonlings/curriculum/solutions/oop_advanced8.py +2 -0
  808. pythonlings/curriculum/solutions/oop_advanced9.py +2 -0
  809. pythonlings/curriculum/solutions/pathlib1.py +2 -0
  810. pythonlings/curriculum/solutions/pathlib2.py +2 -0
  811. pythonlings/curriculum/solutions/pathlib3.py +2 -0
  812. pythonlings/curriculum/solutions/pathlib4.py +2 -0
  813. pythonlings/curriculum/solutions/pathlib5.py +2 -0
  814. pythonlings/curriculum/solutions/pathlib6.py +2 -0
  815. pythonlings/curriculum/solutions/recursion1.py +2 -0
  816. pythonlings/curriculum/solutions/recursion2.py +2 -0
  817. pythonlings/curriculum/solutions/recursion3.py +2 -0
  818. pythonlings/curriculum/solutions/recursion4.py +2 -0
  819. pythonlings/curriculum/solutions/recursion5.py +2 -0
  820. pythonlings/curriculum/solutions/recursion6.py +2 -0
  821. pythonlings/curriculum/solutions/recursion7.py +2 -0
  822. pythonlings/curriculum/solutions/recursion8.py +2 -0
  823. pythonlings/curriculum/solutions/regex1.py +2 -0
  824. pythonlings/curriculum/solutions/regex10.py +2 -0
  825. pythonlings/curriculum/solutions/regex2.py +2 -0
  826. pythonlings/curriculum/solutions/regex3.py +2 -0
  827. pythonlings/curriculum/solutions/regex4.py +2 -0
  828. pythonlings/curriculum/solutions/regex5.py +2 -0
  829. pythonlings/curriculum/solutions/regex6.py +2 -0
  830. pythonlings/curriculum/solutions/regex7.py +2 -0
  831. pythonlings/curriculum/solutions/regex8.py +2 -0
  832. pythonlings/curriculum/solutions/regex9.py +2 -0
  833. pythonlings/curriculum/solutions/sets1.py +2 -0
  834. pythonlings/curriculum/solutions/sets10.py +2 -0
  835. pythonlings/curriculum/solutions/sets2.py +2 -0
  836. pythonlings/curriculum/solutions/sets3.py +2 -0
  837. pythonlings/curriculum/solutions/sets4.py +2 -0
  838. pythonlings/curriculum/solutions/sets5.py +2 -0
  839. pythonlings/curriculum/solutions/sets6.py +2 -0
  840. pythonlings/curriculum/solutions/sets7.py +2 -0
  841. pythonlings/curriculum/solutions/sets8.py +2 -0
  842. pythonlings/curriculum/solutions/sets9.py +2 -0
  843. pythonlings/curriculum/solutions/strings1.py +2 -0
  844. pythonlings/curriculum/solutions/strings10.py +2 -0
  845. pythonlings/curriculum/solutions/strings2.py +2 -0
  846. pythonlings/curriculum/solutions/strings3.py +2 -0
  847. pythonlings/curriculum/solutions/strings4.py +2 -0
  848. pythonlings/curriculum/solutions/strings5.py +2 -0
  849. pythonlings/curriculum/solutions/strings6.py +2 -0
  850. pythonlings/curriculum/solutions/strings7.py +2 -0
  851. pythonlings/curriculum/solutions/strings8.py +2 -0
  852. pythonlings/curriculum/solutions/strings9.py +2 -0
  853. pythonlings/curriculum/solutions/testing1.py +2 -0
  854. pythonlings/curriculum/solutions/testing10.py +2 -0
  855. pythonlings/curriculum/solutions/testing11.py +2 -0
  856. pythonlings/curriculum/solutions/testing12.py +2 -0
  857. pythonlings/curriculum/solutions/testing2.py +2 -0
  858. pythonlings/curriculum/solutions/testing3.py +2 -0
  859. pythonlings/curriculum/solutions/testing4.py +2 -0
  860. pythonlings/curriculum/solutions/testing5.py +2 -0
  861. pythonlings/curriculum/solutions/testing6.py +2 -0
  862. pythonlings/curriculum/solutions/testing7.py +2 -0
  863. pythonlings/curriculum/solutions/testing8.py +2 -0
  864. pythonlings/curriculum/solutions/testing9.py +2 -0
  865. pythonlings/curriculum/solutions/tuples1.py +2 -0
  866. pythonlings/curriculum/solutions/tuples10.py +2 -0
  867. pythonlings/curriculum/solutions/tuples2.py +2 -0
  868. pythonlings/curriculum/solutions/tuples3.py +2 -0
  869. pythonlings/curriculum/solutions/tuples4.py +2 -0
  870. pythonlings/curriculum/solutions/tuples5.py +2 -0
  871. pythonlings/curriculum/solutions/tuples6.py +2 -0
  872. pythonlings/curriculum/solutions/tuples7.py +2 -0
  873. pythonlings/curriculum/solutions/tuples8.py +2 -0
  874. pythonlings/curriculum/solutions/tuples9.py +2 -0
  875. pythonlings/curriculum/solutions/type_hints1.py +2 -0
  876. pythonlings/curriculum/solutions/type_hints2.py +2 -0
  877. pythonlings/curriculum/solutions/type_hints3.py +2 -0
  878. pythonlings/curriculum/solutions/type_hints4.py +2 -0
  879. pythonlings/curriculum/solutions/type_hints5.py +2 -0
  880. pythonlings/curriculum/solutions/type_hints6.py +2 -0
  881. pythonlings/curriculum/solutions/type_hints7.py +2 -0
  882. pythonlings/curriculum/solutions/type_hints8.py +2 -0
  883. pythonlings/curriculum/solutions/variables1.py +2 -0
  884. pythonlings/curriculum/solutions/variables10.py +2 -0
  885. pythonlings/curriculum/solutions/variables2.py +2 -0
  886. pythonlings/curriculum/solutions/variables3.py +2 -0
  887. pythonlings/curriculum/solutions/variables4.py +2 -0
  888. pythonlings/curriculum/solutions/variables5.py +2 -0
  889. pythonlings/curriculum/solutions/variables6.py +2 -0
  890. pythonlings/curriculum/solutions/variables7.py +2 -0
  891. pythonlings/curriculum/solutions/variables8.py +2 -0
  892. pythonlings/curriculum/solutions/variables9.py +2 -0
  893. pythonlings/docs/NOTICE.md +9 -0
  894. pythonlings/docs/__init__.py +1 -0
  895. pythonlings/docs/index.json +160 -0
  896. pythonlings/docs/topics/__init__.py +1 -0
  897. pythonlings/docs/topics/async.md +97 -0
  898. pythonlings/docs/topics/classes.md +97 -0
  899. pythonlings/docs/topics/collections.md +96 -0
  900. pythonlings/docs/topics/comprehensions.md +97 -0
  901. pythonlings/docs/topics/conditionals.md +88 -0
  902. pythonlings/docs/topics/context_managers.md +97 -0
  903. pythonlings/docs/topics/dataclasses.md +97 -0
  904. pythonlings/docs/topics/datetime.md +97 -0
  905. pythonlings/docs/topics/decorators.md +91 -0
  906. pythonlings/docs/topics/dictionaries.md +96 -0
  907. pythonlings/docs/topics/enums.md +96 -0
  908. pythonlings/docs/topics/exceptions.md +96 -0
  909. pythonlings/docs/topics/file_io.md +96 -0
  910. pythonlings/docs/topics/functional.md +96 -0
  911. pythonlings/docs/topics/functions.md +97 -0
  912. pythonlings/docs/topics/generators.md +97 -0
  913. pythonlings/docs/topics/itertools.md +96 -0
  914. pythonlings/docs/topics/json.md +97 -0
  915. pythonlings/docs/topics/lists.md +97 -0
  916. pythonlings/docs/topics/loops.md +95 -0
  917. pythonlings/docs/topics/modules.md +97 -0
  918. pythonlings/docs/topics/oop_advanced.md +71 -0
  919. pythonlings/docs/topics/pathlib.md +79 -0
  920. pythonlings/docs/topics/recursion.md +73 -0
  921. pythonlings/docs/topics/regex.md +96 -0
  922. pythonlings/docs/topics/sets.md +97 -0
  923. pythonlings/docs/topics/strings.md +96 -0
  924. pythonlings/docs/topics/testing.md +97 -0
  925. pythonlings/docs/topics/tuples.md +97 -0
  926. pythonlings/docs/topics/type_hints.md +97 -0
  927. pythonlings/docs/topics/variables.md +97 -0
  928. pythonlings/pythonlings.tcss +123 -0
  929. pythonlings/screens/__init__.py +0 -0
  930. pythonlings/screens/docs.py +93 -0
  931. pythonlings/screens/topic_picker.py +107 -0
  932. pythonlings/screens/track.py +234 -0
  933. pythonlings/widgets/__init__.py +0 -0
  934. pythonlings/widgets/editor_pane.py +33 -0
  935. pythonlings/widgets/exercise_tree.py +33 -0
  936. pythonlings/widgets/output_panel.py +180 -0
  937. pythonlings/widgets/progress.py +15 -0
  938. pythonlings-0.3.0.dist-info/METADATA +259 -0
  939. pythonlings-0.3.0.dist-info/RECORD +942 -0
  940. pythonlings-0.3.0.dist-info/WHEEL +4 -0
  941. pythonlings-0.3.0.dist-info/entry_points.txt +2 -0
  942. pythonlings-0.3.0.dist-info/licenses/LICENSE +21 -0
@@ -0,0 +1,942 @@
1
+ pythonlings/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
+ pythonlings/__main__.py,sha256=uSvclvHiv4C9zXiw2cdtV_56ba4i6VeKB0wyCd06k-s,90
3
+ pythonlings/app.py,sha256=aaj3CtSP08_fN8d7OZxHccC8A1TQOcqZkE5BGncQmmg,2605
4
+ pythonlings/cli.py,sha256=MglnM8VZgVWl8XRCswbLijBbg6S23f_Frn-Z4h0gj34,10608
5
+ pythonlings/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
6
+ pythonlings/core/curriculum.py,sha256=VM4Z854vY-Udq511-7DHv1scPgvji0wTQnJkItmOMvQ,3449
7
+ pythonlings/core/docs.py,sha256=caRAYtu-bYd7qetL9ZfgBOVcFRR0SyI0hfXPP5_VDtQ,1892
8
+ pythonlings/core/exercise.py,sha256=V_LVXXcdS7JLplGGCdZv54rYxAhxCTiG8v7wcViFI2o,652
9
+ pythonlings/core/manifest.py,sha256=HpFZ3pDcUxt62yZERGuIx9bs-xqaz6QKt3BCcnhi-xQ,3453
10
+ pythonlings/core/reset.py,sha256=tqrwbjU-1V0q4fHAny0NrwK_IVAU4rHhziWtaaS5X1k,1414
11
+ pythonlings/core/runner.py,sha256=h7JX7FGIzGa5cuggEOJN4nov2u7BDiuURpEfV-si0oM,3745
12
+ pythonlings/core/solutions.py,sha256=06srf3SNjTnBn4u0QGk55-Tjjt9SfnxsUigD7JnD4rE,507
13
+ pythonlings/core/state.py,sha256=0CGLIBwaZH86QjmacjX60jCkjrY8bYNOsTUpMHvsOmE,2532
14
+ pythonlings/docs/NOTICE.md,sha256=t9FfUSDE2wT5amf3PYI1Vs8CLYUVtzPq0PdArvmtss4,450
15
+ pythonlings/docs/__init__.py,sha256=Oj4hwHUM_Ssj-1vs8U52o491Ogy2mDbas7Y8q_dw3UY,51
16
+ pythonlings/docs/index.json,sha256=BlKHcCw9N9oNP0qfVi230QtTzZ_jUc_MA17b0ITpB8k,5422
17
+ pythonlings/docs/topics/__init__.py,sha256=UZcVHg0diki-V_TgYtynmOPWB0Bipd8AqAjCcoY8bNg,67
18
+ pythonlings/docs/topics/async.md,sha256=Mm7BfVK65teFV9wOdXbCY5k7pArBFRPRwBafTtDHOmc,1472
19
+ pythonlings/docs/topics/classes.md,sha256=3xiRn7DfxsZhWoGxlFEaoR98nk-DZaO0R7Crl9G_X60,4012
20
+ pythonlings/docs/topics/collections.md,sha256=Wh3lOp9kXT8ncCL7LwFxbbh8hFut3UxbuCUqpgTsrnU,2012
21
+ pythonlings/docs/topics/comprehensions.md,sha256=0cHZMPJFcTaDVOZ2eOGsd9z4YxcIdNUXKriOo-jvIck,2456
22
+ pythonlings/docs/topics/conditionals.md,sha256=RlFpJG1hG4ALJTpz3bmSBW6JUL0MwTA1In-X92EYStA,2425
23
+ pythonlings/docs/topics/context_managers.md,sha256=Kod_8D7EskDcdviGMfibewyHeWmc6hi09dZ33Y7vKnE,2679
24
+ pythonlings/docs/topics/dataclasses.md,sha256=LBYssZKuosa3BjG_-kuKQKPcDFo_kGv-b63mJzw9plk,1722
25
+ pythonlings/docs/topics/datetime.md,sha256=O6syX3LMks46Z1kDH_4Bo9ZohoZCBaQw2kTtpxkMe9c,1698
26
+ pythonlings/docs/topics/decorators.md,sha256=hvgVdgkgUZjyMREm5jQ2XtMDqEmUhWQrD5LfLF0AXYI,3159
27
+ pythonlings/docs/topics/dictionaries.md,sha256=GiKz5iQhcBlZQBKGvqOpyEukhvTtVVjGDSSeHkv_UvM,3701
28
+ pythonlings/docs/topics/enums.md,sha256=bTCgtBbI-8ulZdS7It7m9R27vp1s9hdkzLLICLh22jw,1450
29
+ pythonlings/docs/topics/exceptions.md,sha256=ssVdqQPksRQdxLkbxleWAVpuhjqNwx3iJpW0itCaXPE,2558
30
+ pythonlings/docs/topics/file_io.md,sha256=DtWiSoSPZO8bjLs-JNIOWUMcp4l-tq10z10JFvAYUYg,3746
31
+ pythonlings/docs/topics/functional.md,sha256=U4n8Tg0GXPfFvpogt8atkft9xRSjCvY1LMxDaTUjBEM,1822
32
+ pythonlings/docs/topics/functions.md,sha256=dluCym3Op61fKH4YUJCHdvoXGfN5mKpv563cgRuuQok,4009
33
+ pythonlings/docs/topics/generators.md,sha256=maoHleTVYq756h4Zv1XhbLo-dLh7vmHcbNuKgFRPYjs,2674
34
+ pythonlings/docs/topics/itertools.md,sha256=6CmadfXbuKgpftvIHASgJX0Jo23zyqPQ_u-Zrk5Mx0g,1778
35
+ pythonlings/docs/topics/json.md,sha256=6J78ceFa9cE5DTJS6ymf0PqABugckHzPIBpdoZjcWfs,2330
36
+ pythonlings/docs/topics/lists.md,sha256=WWJ0OdGWOL_PmKkOK0EAH9FV3nT_3_p4I1DwAU846Ss,2797
37
+ pythonlings/docs/topics/loops.md,sha256=wAyic-kEnO7tTiXbo5_KuPtmhG3XBLMuBrSnW4w_2WI,3025
38
+ pythonlings/docs/topics/modules.md,sha256=v11-AZDnZYkqlZtv4ZZMnYluOqKqTk6HpnaDvbPuMuw,3456
39
+ pythonlings/docs/topics/oop_advanced.md,sha256=psIDIOxnrZ_EvDRFIIMRvXJXS3OIxFFP2IVisl8Yosc,1450
40
+ pythonlings/docs/topics/pathlib.md,sha256=P-RF1VzM4DWNy85dtuGVALDvGsZ9mta2eFgw2vMV0F0,1642
41
+ pythonlings/docs/topics/recursion.md,sha256=a8xyqRPVKaVZk2_zsrtPXbBSLfW-5VrY06HjxdDSH0Q,2903
42
+ pythonlings/docs/topics/regex.md,sha256=GzJFL27Ljmr3cegMUHiJXy-_sUpYHNPBXtqhwayPWZg,2080
43
+ pythonlings/docs/topics/sets.md,sha256=6u8eXxn6PybKSMq2jM4gKP2jto8k-G8jHcB5WrsNPik,3525
44
+ pythonlings/docs/topics/strings.md,sha256=XE1uprv6rH5C_oI6Fdghhc-EdIaIffeQ9KYTN1xip3s,3246
45
+ pythonlings/docs/topics/testing.md,sha256=4iAhV_1sNQGLZ33imfOYWHlRFXVBO122VHfFq5rtVbQ,2189
46
+ pythonlings/docs/topics/tuples.md,sha256=P5CZVd1WT_UKDFabqECSKdWUn3UPzj9QRXcFxRGyaZ8,2800
47
+ pythonlings/docs/topics/type_hints.md,sha256=hQJODyKQEatFvjb5BCKFGE_SyiB9sTIrG5fuDfKvVAQ,2230
48
+ pythonlings/docs/topics/variables.md,sha256=wO7XhmAfmueKmf1ICMrIDvR-45lX16h8jL8UK-IFQ7M,3092
49
+ pythonlings/screens/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
50
+ pythonlings/screens/docs.py,sha256=rf_sVxZ8NMZetCZsTrvI1lHlaV3QroZS4jkFfkwY2sU,3098
51
+ pythonlings/screens/topic_picker.py,sha256=JIBgD90SzB1YrPx_4GohRrYoV_gcj2-eWirsbJZYd2A,3730
52
+ pythonlings/screens/track.py,sha256=jG_kpqMNHO8kY7BHxN8I4wqGBwrEsocNGYJE-VJq-0Q,8400
53
+ pythonlings/widgets/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
54
+ pythonlings/widgets/editor_pane.py,sha256=5_xCBIRy0K0ncF6Uz137_RBU72zam38PcHX2F-UPl_Q,1102
55
+ pythonlings/widgets/exercise_tree.py,sha256=cFbnQ9SKQHR5eno0lYKWHlxGwn_dT3dnS9FbUpKa5nk,872
56
+ pythonlings/widgets/output_panel.py,sha256=GFQH_BlOOHnmxYZ0BRUwCZEnJ7-NxRj4Be9pj5icWQ0,6618
57
+ pythonlings/widgets/progress.py,sha256=rFJVHRUDf5_WBMCj05ThAI5ejDpU34ozGovnshOx8z4,481
58
+ pythonlings/pythonlings.tcss,sha256=NphmaKJigEV0BrbvH26HFDsbmmqEBCmc1o8rQnzMBds,1506
59
+ pythonlings/curriculum/checks/async/async1.py,sha256=QhoqKFuuAwi98PnRxjCKUzkQTT6MW3IAFvCBYzBVH1k,80
60
+ pythonlings/curriculum/checks/async/async10.py,sha256=236KCcUOkmwGmFi7tQvEqMVTsuoR5Prhb4PLG92Z3Ls,110
61
+ pythonlings/curriculum/checks/async/async2.py,sha256=PW_bJ_ei939oqcbqNJzCVtbzX-fMFCoVOTr-4-6ju5A,73
62
+ pythonlings/curriculum/checks/async/async3.py,sha256=TYw6NsENrPGxuyseV1w-cDASJrqtbOMKQNitShZ4yFA,76
63
+ pythonlings/curriculum/checks/async/async4.py,sha256=Xqj47bKFt_68QM-_7uJgY90kXsKd267QfLsgDCm7l6E,79
64
+ pythonlings/curriculum/checks/async/async5.py,sha256=i15-Ov_KPWVOKH-sCMiOKmPdiGx3pQkT0gGC2eNR2T4,72
65
+ pythonlings/curriculum/checks/async/async6.py,sha256=Bv4x8mn0u-1spQPNp4Wvw4HbOk0a110mi7dk2VfC0FE,86
66
+ pythonlings/curriculum/checks/async/async7.py,sha256=esUAjeMVXmxQNn58ZwzFnU7v_Olc_aZ5UsZ-nraBR44,80
67
+ pythonlings/curriculum/checks/async/async8.py,sha256=F_4y7Qi9-kGZMNwFuE1yBlKs95R6ZkTjLgRYbtevtS4,39
68
+ pythonlings/curriculum/checks/async/async9.py,sha256=q16k8qXDU7jkJmgxPMyHz9Zty1qsGHoComd-9jF7UF4,90
69
+ pythonlings/curriculum/checks/classes/classes1.py,sha256=SDWjUEh706BpvHmUAYOsYpAvj2e5RDao0oF0UrzHiyA,119
70
+ pythonlings/curriculum/checks/classes/classes10.py,sha256=heD0WxOfnM-ULRl8OCPfXzQHzoVlxbohDdcyZBp_s4Q,321
71
+ pythonlings/curriculum/checks/classes/classes11.py,sha256=-wiiZn0D984YRunURQ1L4BDWvXgpB1p7ejvzbdUTv4A,263
72
+ pythonlings/curriculum/checks/classes/classes12.py,sha256=Hbx-6PihHx6nWpF9zCSegT08gxoT4KfNvwlOk-rjmhc,602
73
+ pythonlings/curriculum/checks/classes/classes2.py,sha256=_YldMZARA1oeZJXrx4BkoD4CzaLBaEpqS17GGBYpF-0,125
74
+ pythonlings/curriculum/checks/classes/classes3.py,sha256=xzgPed-MrU62rXlE5BALvcw_JuoXJoGqiPBG42f-vBM,118
75
+ pythonlings/curriculum/checks/classes/classes4.py,sha256=gE_q9BChWS1xdXweIWqz5BFQlwL6xPyASmTGW9jqPno,165
76
+ pythonlings/curriculum/checks/classes/classes5.py,sha256=8grbjySYMxOqJfPB-5RWYOzQDUzajg7sZcjlzWUh9vU,150
77
+ pythonlings/curriculum/checks/classes/classes6.py,sha256=xgXC4Q4DAH0UV50pjpXQCH84Y7Tdo7BfkeQl_0magas,147
78
+ pythonlings/curriculum/checks/classes/classes7.py,sha256=LZDq2tvwib5l1_xoPF-abVvrtl8DC0bvkWvZjVRLBw8,127
79
+ pythonlings/curriculum/checks/classes/classes8.py,sha256=Bol7xRlVJmsMrxxPqLSlfqt2EIPvdgr0XcFJk_lRtY0,150
80
+ pythonlings/curriculum/checks/classes/classes9.py,sha256=FGE92-8FsycXwGlfck4vlJB4htOeUKktFnf3yabV05s,177
81
+ pythonlings/curriculum/checks/collections/collections1.py,sha256=9JPVkN7Ckqb8GTpwDD0CFeyNdibASk60houC9WBM-7I,188
82
+ pythonlings/curriculum/checks/collections/collections10.py,sha256=Do_rLwVDHsjiEpIPKeB_aJKsLHAIsvseFrfFFRMr58M,654
83
+ pythonlings/curriculum/checks/collections/collections2.py,sha256=oN14fu2ZVGwrPdY792fKZldcTnJTSq8C4BAyPGJ90zk,202
84
+ pythonlings/curriculum/checks/collections/collections3.py,sha256=TNaN4m_9u8AZpqu6emiadqJMogGmuAXcIWZ3fNQyvaY,223
85
+ pythonlings/curriculum/checks/collections/collections4.py,sha256=1uPJ7jW52Jh5Iu70IDIRSrACQKgnHFuK3XpLnho0A34,192
86
+ pythonlings/curriculum/checks/collections/collections5.py,sha256=zDeObZmtcmW4l_lw75FjsiueOcN1JYvJd6GWQqYpY48,203
87
+ pythonlings/curriculum/checks/collections/collections6.py,sha256=sKAK6JNhTPqAcaiTadv7JWCNtH0UU9VOZwonhsDAMAE,335
88
+ pythonlings/curriculum/checks/collections/collections7.py,sha256=Cefuj-6FQwoBI1r_8V-yJa9vJnM2KLLGMjt1n0UE0wk,226
89
+ pythonlings/curriculum/checks/collections/collections8.py,sha256=AL93F_ehFsrEby14SPi0Pc15eqpZK5ys4sKZbJgi8ow,244
90
+ pythonlings/curriculum/checks/collections/collections9.py,sha256=z0cOUd8azI4he2X75ZndK51soDx79qU91oZ7ScoS6qk,484
91
+ pythonlings/curriculum/checks/comprehensions/comprehensions1.py,sha256=EdtksGvKe01XgfbdJpnDNq5rCXqtxZpnwmSBiPknquA,170
92
+ pythonlings/curriculum/checks/comprehensions/comprehensions10.py,sha256=YF-HEdQRDQxHg95J3E2TAXDU0V3gIxZGN39nrfWr97U,218
93
+ pythonlings/curriculum/checks/comprehensions/comprehensions2.py,sha256=UCK2lRuBjo6lyJxvWgW0W4-gF7xdaq6owYPl77mpRH4,156
94
+ pythonlings/curriculum/checks/comprehensions/comprehensions3.py,sha256=VM5TWNOhlVcqeYltxhQ1OJJz4ppb1acfW-_oNNh6tgE,172
95
+ pythonlings/curriculum/checks/comprehensions/comprehensions4.py,sha256=Xrzlrk0yRRNW3uJO4IAR7yyptez_8KBjplrP7OcRJck,194
96
+ pythonlings/curriculum/checks/comprehensions/comprehensions5.py,sha256=beqGSlLBDl0jcFT1ubvGkKllFcKRYo-Lbqwr-MvN014,177
97
+ pythonlings/curriculum/checks/comprehensions/comprehensions6.py,sha256=lrfchpZlUP7vGCSdGevZ044KP9U9L2B-jH3RtvNWSEI,186
98
+ pythonlings/curriculum/checks/comprehensions/comprehensions7.py,sha256=oZiSLiaLw9ACAHs_mcu9sIS1Joqx8uNjEdAeKsOk8ow,237
99
+ pythonlings/curriculum/checks/comprehensions/comprehensions8.py,sha256=3Md5TylzCDazi8UzrEIpmmtuN5jtqMt7OCXqn-BLAp4,234
100
+ pythonlings/curriculum/checks/comprehensions/comprehensions9.py,sha256=jQEZI1qBkEuIRyPoBwn5COyCgbjwR1IJvgdiVolXZFg,170
101
+ pythonlings/curriculum/checks/conditionals/conditionals1.py,sha256=yapOD1i_MOIVrH8eCn5IWtbyQrM3xTNliBBmnf8dPwk,117
102
+ pythonlings/curriculum/checks/conditionals/conditionals10.py,sha256=FJ_MCsuqYJXiG5gYYIrvq7tFiEdTY9xzAcl-qF1LMxE,920
103
+ pythonlings/curriculum/checks/conditionals/conditionals2.py,sha256=DrX_oN3MG4VughphZ8VHH6DKYTmXQJeNxz40iDc08X0,362
104
+ pythonlings/curriculum/checks/conditionals/conditionals3.py,sha256=A5_Bla7YOIBWL9Eln3mjQfDnldOwr3t8lclog8M_73k,592
105
+ pythonlings/curriculum/checks/conditionals/conditionals4.py,sha256=rpYERPNCYYTvsxqj8CKN4G3di9uglAziUn0Y4qkGabw,589
106
+ pythonlings/curriculum/checks/conditionals/conditionals5.py,sha256=nDgbeakgqJu2q7q1NqCDjOVW1AlsOafbITpCUKq4vCA,587
107
+ pythonlings/curriculum/checks/conditionals/conditionals6.py,sha256=EsDmD5GUpdzjOeH-ZnADJc2BhOjrH_pQzq5hxG7GQq8,354
108
+ pythonlings/curriculum/checks/conditionals/conditionals7.py,sha256=BVfrKFCy6UUd93IYAZT7wFSN_SmTDFDU7tA2BgsX-3Y,388
109
+ pythonlings/curriculum/checks/conditionals/conditionals8.py,sha256=sNB1wW-VIugRLLOdgoablnT5MSo5lLIMFsU2XQ2zA2U,489
110
+ pythonlings/curriculum/checks/conditionals/conditionals9.py,sha256=MSEAla4Ol0zs9jXZ3-enUc410zuzdjFBN-0RS5kvshw,504
111
+ pythonlings/curriculum/checks/context_managers/context_managers1.py,sha256=Aj_6en5W6QgNaUb5p1XAlPi1y7g81w_OAtBHZjYZxaI,261
112
+ pythonlings/curriculum/checks/context_managers/context_managers2.py,sha256=ajKBW0uXhuHEpb6vELvVxDNghjW3XEy2pfACX_G92bs,169
113
+ pythonlings/curriculum/checks/context_managers/context_managers3.py,sha256=MjUlvWFUsdJliecWxxWAX96ILECjpxUpNqKpjk_PXtM,97
114
+ pythonlings/curriculum/checks/context_managers/context_managers4.py,sha256=WmEYqUyZ8yIf9TLOywNp5YQC8-84lfTGhcTzKx_ZvLg,178
115
+ pythonlings/curriculum/checks/context_managers/context_managers5.py,sha256=9W7mP0StLvZUyKVzH_0KHVgofKEYyjlQBB4LaAlO3vE,223
116
+ pythonlings/curriculum/checks/context_managers/context_managers6.py,sha256=a-mC_01F4-eoxwNjAra7m5Zv7A4zQrftdZGncK2lPIY,155
117
+ pythonlings/curriculum/checks/context_managers/context_managers7.py,sha256=PrKZlmqFGTdjvyWVjrKQO_PbKmC63xs3H_clbUw13do,399
118
+ pythonlings/curriculum/checks/context_managers/context_managers8.py,sha256=VFWzaUuHeYD4FSRAeepKzbxXeaAFSXA8zuD0j8qBRUE,546
119
+ pythonlings/curriculum/checks/dataclasses/dataclasses1.py,sha256=9qlsWhbU1vO6CF9uyjtkRn2MN1Ky4Lfzq7GuQHx9At0,114
120
+ pythonlings/curriculum/checks/dataclasses/dataclasses2.py,sha256=36jlQOA4aEyP8BU6HvyVKJYIqT29Fh1OZUGFb36xtf0,166
121
+ pythonlings/curriculum/checks/dataclasses/dataclasses3.py,sha256=qAQJ6IK9zSJF9kwc_lFs5pA1UmVhhPd4ipXDg_X6spk,138
122
+ pythonlings/curriculum/checks/dataclasses/dataclasses4.py,sha256=JamrmehaSB3ogqfcWutA2Sll_lMQEF0OEmli1S2d4tM,158
123
+ pythonlings/curriculum/checks/dataclasses/dataclasses5.py,sha256=fmLVielfSwI5Q9fos9oe-MHu8Pcgg_MZd63TmFR8t6c,367
124
+ pythonlings/curriculum/checks/dataclasses/dataclasses6.py,sha256=i9Cak57AO4mMP0m6DEz5Kj5WqrxkAUGkbLWwr9nmTy8,318
125
+ pythonlings/curriculum/checks/dataclasses/dataclasses7.py,sha256=_d1p9NzV2_WvYdl5aqJP1MIoxZCS_FmB8dfITQ9Hm1w,186
126
+ pythonlings/curriculum/checks/dataclasses/dataclasses8.py,sha256=m1QQq0e5oDXN_LzEdgG7Nkii5-DjORObokWfTFA4_Ok,344
127
+ pythonlings/curriculum/checks/datetime/datetime1.py,sha256=lF0BI3sXxR_GHrXruQBY97Y6DzLzr_QlY2Ok45FFjbk,88
128
+ pythonlings/curriculum/checks/datetime/datetime2.py,sha256=FLaAamkU6ghk9KQj2dekRI8A94J_rAu8d6EkVD-TqyA,87
129
+ pythonlings/curriculum/checks/datetime/datetime3.py,sha256=Li8mkN-4jy4lWtfYYv9VuG-x4GcE3RZNeqMFaX03vso,154
130
+ pythonlings/curriculum/checks/datetime/datetime4.py,sha256=CuxhWxA0lecqawIRCfO8FnWwx9IJAx3rAPfInWyvkpY,55
131
+ pythonlings/curriculum/checks/datetime/datetime5.py,sha256=dratMCig7K0NolWgPpSpmpQEmjiSUAvZ5LlHq0kZR2k,47
132
+ pythonlings/curriculum/checks/datetime/datetime6.py,sha256=T6dCXe4aTplTX4A-NArREbHySwjLaenoU2hl4uNCnFc,48
133
+ pythonlings/curriculum/checks/datetime/datetime7.py,sha256=Qyz8JKT8Wt-VBH3iskIFjfloi0I9JMjxM47X9vTemK0,78
134
+ pythonlings/curriculum/checks/datetime/datetime8.py,sha256=FgbCs2Q4BFk8cjexVTqxUXYtYrxkDt84zREPGkDkKXw,120
135
+ pythonlings/curriculum/checks/decorators/decorators1.py,sha256=S75oUi8yXqrwBOl0r9G9dJ5VebJFe7BnOV2UYvYdk5o,285
136
+ pythonlings/curriculum/checks/decorators/decorators10.py,sha256=zDw6p16l03EZdrQTD0xEBOVPCnkGxIYOaO0cwljPm0M,449
137
+ pythonlings/curriculum/checks/decorators/decorators2.py,sha256=sOU4qRyqNojlSsR155vnZhP1MMLF4AR6OwwpDb-CWQ4,168
138
+ pythonlings/curriculum/checks/decorators/decorators3.py,sha256=fVIfb7nBCm5FFyBCLQLo7Yn_w9GYDMw_ZD7wgMffVqY,148
139
+ pythonlings/curriculum/checks/decorators/decorators4.py,sha256=tHmpvzY1FvtX7HvJodryp_RbAVsFglWI8iEv66xIvsk,190
140
+ pythonlings/curriculum/checks/decorators/decorators5.py,sha256=ix_QIlG_H-rN87uExGe3_3ceyyosuN4qhW9HJ3qBpZI,210
141
+ pythonlings/curriculum/checks/decorators/decorators6.py,sha256=SvRO8U7jDvVCntLHYfwOCjR_KUoss-kjgmVAqTTcs4c,275
142
+ pythonlings/curriculum/checks/decorators/decorators7.py,sha256=P2cnqJA_NlWTsjKS8FZcTxgm4LJ4TR47Rmkw8aFJHjo,308
143
+ pythonlings/curriculum/checks/decorators/decorators8.py,sha256=CKO2jHszJZe-AQcNb_bfs70axh9hxUibn5_po1N58VQ,507
144
+ pythonlings/curriculum/checks/decorators/decorators9.py,sha256=2BnzHKmKtDPL59Uu7QZLBpSyKotww9-255OLNE-8_Xo,128
145
+ pythonlings/curriculum/checks/dictionaries/dictionaries1.py,sha256=5IeyU_2K81TSJe5lX-e6CeHIZOsC7Aw347Qu56Z-Mmk,184
146
+ pythonlings/curriculum/checks/dictionaries/dictionaries10.py,sha256=mwOPFrbfhlTjjVHW1YxF7coATCnxT_WLY-fMSz1PDK0,201
147
+ pythonlings/curriculum/checks/dictionaries/dictionaries2.py,sha256=cIDM0Op9tyglHemJw3G9MoNeQINnx4590u3DTHTWzEk,121
148
+ pythonlings/curriculum/checks/dictionaries/dictionaries3.py,sha256=p2eDR_f2aIRYBM7GEL1Uvk68IHIs_yFKD6G16JpFZjo,348
149
+ pythonlings/curriculum/checks/dictionaries/dictionaries4.py,sha256=o7AygXmM9WlNBS4-ij67p-OEWOWkj3s2nL0WbIBZ7eQ,368
150
+ pythonlings/curriculum/checks/dictionaries/dictionaries5.py,sha256=Foj3U1nFTMjRpRo7359cGGSG4XLPBxGcUWCBogdkanM,532
151
+ pythonlings/curriculum/checks/dictionaries/dictionaries6.py,sha256=Sn322NE0XBOWts62WaFxcJjVWlNuVop7N-q0absZ-Jc,254
152
+ pythonlings/curriculum/checks/dictionaries/dictionaries7.py,sha256=OWkn-pw-0lTIt6jkljJlei-rSSoq7dmZScFD6pxFNmE,204
153
+ pythonlings/curriculum/checks/dictionaries/dictionaries8.py,sha256=X62bBa27OIvc5ROjjMp35h65k7nXjudQlIXYEbmu53c,267
154
+ pythonlings/curriculum/checks/dictionaries/dictionaries9.py,sha256=rMcGBWPFgHEvdqLUE4rrSboEbHu4aSgpwfhRuqINads,255
155
+ pythonlings/curriculum/checks/enums/enums1.py,sha256=iYezkXTzmjmHuckz67eeqWo3Ls6XgoSFj_P06ER-aLo,114
156
+ pythonlings/curriculum/checks/enums/enums2.py,sha256=mYSI3LozzhtckHRcPMLD1jkLwChuitpIw1kwwgW2tb4,146
157
+ pythonlings/curriculum/checks/enums/enums3.py,sha256=-opLb_2VpELk19tstxAuwue_gg_oUDY2-W62kZabtkM,77
158
+ pythonlings/curriculum/checks/enums/enums4.py,sha256=CugLCwopzvyh2eNoHwmtX4CHiwMWJQAkH7lkyEGttgE,56
159
+ pythonlings/curriculum/checks/enums/enums5.py,sha256=HrxEhEdvN4RgEkoDjSnkaQ3vk5xEK20h9lT9AIfZ3zo,162
160
+ pythonlings/curriculum/checks/enums/enums6.py,sha256=c5dTSk4h1cqGtMx_DHrU-BTSDL92n0BBZKzi_SB8qRo,101
161
+ pythonlings/curriculum/checks/exceptions/exceptions1.py,sha256=dGA_cdgKJ_MBGYQa9uwxUdn2B7kCo63vKU5VfpEBgIg,263
162
+ pythonlings/curriculum/checks/exceptions/exceptions10.py,sha256=3QvgcRQAzi-MiAgFxJQbznUJOsOr7o4wYqs7dZJPjGk,1279
163
+ pythonlings/curriculum/checks/exceptions/exceptions2.py,sha256=hWBqsWaVI3lgQpYQe2S4GSAApaEZ1fLG7hbwJ81Lo7E,331
164
+ pythonlings/curriculum/checks/exceptions/exceptions3.py,sha256=XHiZQHcVNPHK2FvDDoYomEiBilZbnO_m4GH1FXQ7o_g,479
165
+ pythonlings/curriculum/checks/exceptions/exceptions4.py,sha256=Aa6MXwJAOYo9meCjEOCF1Oe_kZrnoDVZp7paQzXXbMQ,417
166
+ pythonlings/curriculum/checks/exceptions/exceptions5.py,sha256=U3ADFcNUQsBOUihVosGdW0kiGQgZvrBatibapaCPzcM,391
167
+ pythonlings/curriculum/checks/exceptions/exceptions6.py,sha256=2km2a3wV3Ro99UBwHVcoK-ONTDFfwL150FMXGpqiuxc,465
168
+ pythonlings/curriculum/checks/exceptions/exceptions7.py,sha256=ikEu7nh7SSF6j8JRmK-wgl0azVnPGQLxapPo1p0Cy6k,577
169
+ pythonlings/curriculum/checks/exceptions/exceptions8.py,sha256=hVQReQf9tGmBIxZC1oDAF2Pnl3Px0MFlQCxvdnQIDbg,447
170
+ pythonlings/curriculum/checks/exceptions/exceptions9.py,sha256=DoYO3qt0AJ_qiiNVAZ6TIabSWy4Cau0aMOHirjLD3hk,596
171
+ pythonlings/curriculum/checks/file_io/file_io1.py,sha256=HeH75tQlVEztMXps1YNwe_fiq5r7_Ems-FzeEvcf4HE,246
172
+ pythonlings/curriculum/checks/file_io/file_io10.py,sha256=3JWCNtSLg02LnPOaUAZ44ka0c3siUAya88UMCCM9s0Q,317
173
+ pythonlings/curriculum/checks/file_io/file_io2.py,sha256=pCPTVjBo7C-eXXvCkNsam4fUj2zAhPXDGQ430u1Bhvo,177
174
+ pythonlings/curriculum/checks/file_io/file_io3.py,sha256=tGSyzMuqxNbMrvrXkfHWxZjZDXAH8Udk0qz3YbIJlHQ,242
175
+ pythonlings/curriculum/checks/file_io/file_io4.py,sha256=cI8J9rqwco78zfJh2ZWgk9VZBbZegi9ooRzk1M5uGlw,460
176
+ pythonlings/curriculum/checks/file_io/file_io5.py,sha256=1vWf12dh6hjwDLd26DGPM23T1uo57TldfF5e2dY4qVI,264
177
+ pythonlings/curriculum/checks/file_io/file_io6.py,sha256=WOtmheFewjqzgL0v_t2--dDIyRBwmDfK-miV6_FETT0,154
178
+ pythonlings/curriculum/checks/file_io/file_io7.py,sha256=bIWnDmKLVHQpXC9oJPoVj_U3ykdtuLQzri2ObW3IM-I,267
179
+ pythonlings/curriculum/checks/file_io/file_io8.py,sha256=hI6fCJrf-UUS2X0kHVib1j7Kf6PvlgXxetSAI0ThuB4,186
180
+ pythonlings/curriculum/checks/file_io/file_io9.py,sha256=kQ48-dKXt2_ul1-pgwVhtN_bYkDa9tsGrTOehtpw9U8,155
181
+ pythonlings/curriculum/checks/functional/functional1.py,sha256=B2CIUHKiUTfoVEzOoatMYzwCK1IoS440xKQEXUiwxP4,179
182
+ pythonlings/curriculum/checks/functional/functional10.py,sha256=li7wY2zDraLUkWPmtk-eLC8bMPum5vCbMwptbIpTbww,353
183
+ pythonlings/curriculum/checks/functional/functional2.py,sha256=VyRCOvf-995zAOmSJUd2hlZo8b9RzrTNQ8_vIzwnctk,223
184
+ pythonlings/curriculum/checks/functional/functional3.py,sha256=sPHm9h3-e5m0ZKKw9Wmz9NUlsDRcYp3y4BsPu1yGkVQ,147
185
+ pythonlings/curriculum/checks/functional/functional4.py,sha256=F9_Si3p-ZlM5w_TJi4mX71hmLiIeDAmaDidHq3BMGEo,177
186
+ pythonlings/curriculum/checks/functional/functional5.py,sha256=DQEyUyLxHVmc2LyT0a-uNlurkctQlp4aBTKmZ1jpxLI,242
187
+ pythonlings/curriculum/checks/functional/functional6.py,sha256=TG7h9T-xNi4M9ZbIRGkt2KsHleFIbfiug9J36EVuHkU,300
188
+ pythonlings/curriculum/checks/functional/functional7.py,sha256=znUfTHNin4UCIOJR2U01wS8K_FHfsZdYqp2lkQZkSvY,288
189
+ pythonlings/curriculum/checks/functional/functional8.py,sha256=jAxpj2UD9bGlRkP-fxdoCGoG11Ip8EZXnwt8kEPnzVA,224
190
+ pythonlings/curriculum/checks/functional/functional9.py,sha256=UOgiAJoiowtZKcWWrJ2jVFGCc-jMZxsd2PSAIlKjbhk,370
191
+ pythonlings/curriculum/checks/functions/functions1.py,sha256=7N-F71n3uz6pKAXGrqx3cREk2SQkspqoSO2EWGnC7TA,257
192
+ pythonlings/curriculum/checks/functions/functions10.py,sha256=wARtdgFOX30jcyoUQBg_nf7G763LpIst8nQhlZTDKd8,506
193
+ pythonlings/curriculum/checks/functions/functions2.py,sha256=jfTUtU8FOXag21yO7dJk7V_ZwP0WnC-uVFGO9ZMDejY,129
194
+ pythonlings/curriculum/checks/functions/functions3.py,sha256=HBozRbRNK3s7ygyAhlPpqS6I0xNXigyiHM9Sq6mL3Dc,174
195
+ pythonlings/curriculum/checks/functions/functions4.py,sha256=LoT4A80ducO3apNiOmDMPLxUQvkgAwP_0n0AaWswzL8,207
196
+ pythonlings/curriculum/checks/functions/functions5.py,sha256=a8q-TYQJBvCmN_FJEsDroTZjxqpUGc5tvp1DXz4ycXQ,289
197
+ pythonlings/curriculum/checks/functions/functions6.py,sha256=ebikUNLlbbbpy1AasjGo8VmQdu3Y84ZEtzu5M-rLc_Y,406
198
+ pythonlings/curriculum/checks/functions/functions7.py,sha256=-2SVmP-TJK8ic6PH9aKETdMZ_2gBfJBJ-O2ADFvjRtw,335
199
+ pythonlings/curriculum/checks/functions/functions8.py,sha256=Xh-AVMauIkIhjZ98aATYpYCiK1Rmr1BqCP8bimaTaBw,361
200
+ pythonlings/curriculum/checks/functions/functions9.py,sha256=8F4K-aMiI1lKvH7hCUzFGqrPJvF2tWitmhaF1HtkA7A,368
201
+ pythonlings/curriculum/checks/generators/generators1.py,sha256=NPnF9QnIx2nMbUI-40oqOq2XVsdUMDES6sjPeOgGlPA,138
202
+ pythonlings/curriculum/checks/generators/generators10.py,sha256=8nGZlnVkLwu-MZQetErPtZylKSikrlLmOQAZI78qHsM,344
203
+ pythonlings/curriculum/checks/generators/generators2.py,sha256=-IN5P9lxLo9k4qGIzc80ms_wCvN21BhLHdk_XBlV2Rc,185
204
+ pythonlings/curriculum/checks/generators/generators3.py,sha256=K0aMZRMY8hMvJrm6zJlVox4DJ8aToFq846ka-t2B9i8,173
205
+ pythonlings/curriculum/checks/generators/generators4.py,sha256=fmtXt7rI5RnwAcVQEzpathPk08BHm7LzHtSCYGKYBPA,247
206
+ pythonlings/curriculum/checks/generators/generators5.py,sha256=mpuma0vDUQSgFG7JqsFdXc6lHMmExKrPSq5KiTZnyAM,379
207
+ pythonlings/curriculum/checks/generators/generators6.py,sha256=1Gwa0y_LTdkhDsu5vPssrBw-H5LVVUbCY0KfC1OCMA4,273
208
+ pythonlings/curriculum/checks/generators/generators7.py,sha256=HaFhf5l6d4_8JfX0pTHgyt_pVlj4pHz3cguYBAXj0mQ,331
209
+ pythonlings/curriculum/checks/generators/generators8.py,sha256=9cgdwj8s72nwGzYIeKnGHiv1cpeFKLPir8Ec21hCXfY,272
210
+ pythonlings/curriculum/checks/generators/generators9.py,sha256=nPml8mloJiO91ixHhJVBsQpEACjGUleO3qp9QH9UYb8,352
211
+ pythonlings/curriculum/checks/itertools/itertools1.py,sha256=-PvI6Qg52Z86dYiTpPoZ9EbzlDVs1UftVy5TPtqklp4,117
212
+ pythonlings/curriculum/checks/itertools/itertools2.py,sha256=M_TO_C3kpoziAxrjq2YYOzGuT6jBuf-74X_80ZtnWbk,113
213
+ pythonlings/curriculum/checks/itertools/itertools3.py,sha256=U6wwJbXQSaG0Qmue8YeWvZ4EJbBDr_LuXGHXf8haWf4,96
214
+ pythonlings/curriculum/checks/itertools/itertools4.py,sha256=vhUpqQru82UyYyUpMFajekbFMfyAPMzStsuWfKJZ9lU,89
215
+ pythonlings/curriculum/checks/itertools/itertools5.py,sha256=9lmwlVuJfBjUrw_dahC5Hv61qgvcZpmj9PINDlJoRKI,63
216
+ pythonlings/curriculum/checks/itertools/itertools6.py,sha256=XYNDzwQinLhVgNf-nmnrzIuh2p39y-t84aa9Dxhxy9o,88
217
+ pythonlings/curriculum/checks/itertools/itertools7.py,sha256=0DD3DlyAfu7NDEFPhOwxwZ94jofMCsc2iDbGeQqtni8,74
218
+ pythonlings/curriculum/checks/itertools/itertools8.py,sha256=320LrWpWnz25oRDfgzY1zOavK6hZyea-5PUF_SCJWtU,117
219
+ pythonlings/curriculum/checks/json/json1.py,sha256=BY5_N12wbHArN5OCFMQk2KI4mXVOruYqb9OVNdttHgU,92
220
+ pythonlings/curriculum/checks/json/json2.py,sha256=JWE7h8-LdnPYQoJL_SsfQYYwSq0fy1axwK7sqvsdexg,52
221
+ pythonlings/curriculum/checks/json/json3.py,sha256=g6epqw5MG_Ym6NfxWUmjYdf38hmetVMPZYEzqdC3_zk,42
222
+ pythonlings/curriculum/checks/json/json4.py,sha256=DHH_qUY-qDaCgC7_ZWe8E5BgQ-Ud908ZlnStAo7xi4g,62
223
+ pythonlings/curriculum/checks/json/json5.py,sha256=nc3hEOi3Rqw5aCiNvITRdUncZZe8Af_4HNxzCLgou74,43
224
+ pythonlings/curriculum/checks/json/json6.py,sha256=kxZ4Q_ejjcaWvxQ31YpXCgTqRYGNPLib1z8U3kAc3cw,58
225
+ pythonlings/curriculum/checks/json/json7.py,sha256=6d31wKsemUwlo_hqvrbQ6hRJRb8xftieStC-MXqb7A8,108
226
+ pythonlings/curriculum/checks/json/json8.py,sha256=RLt2jH9pDAV8fhf1ORWAQ455EBtkr2IygaLHTcwrKUw,85
227
+ pythonlings/curriculum/checks/lists/lists1.py,sha256=y2F-5obYGV-SVR_V_Rsz3if4d5YrQj6lxs-0pwMB0h8,106
228
+ pythonlings/curriculum/checks/lists/lists10.py,sha256=LGsjiJVxE5aj3IOX7lmj_nQJW-RSTLEld21zDvuqd1E,234
229
+ pythonlings/curriculum/checks/lists/lists2.py,sha256=eoIoCyl2N5BHnMWJx-39YsGBCkW1VaAUzZfMn_nSENw,176
230
+ pythonlings/curriculum/checks/lists/lists3.py,sha256=bReKS794IgFqgcBZjMiyQNzitTMjkbmUysVhZGlkj6I,150
231
+ pythonlings/curriculum/checks/lists/lists4.py,sha256=WInssTCMDaM2_hweBOCCD61obs5Z3qUJuEDJ5k1RVlI,173
232
+ pythonlings/curriculum/checks/lists/lists5.py,sha256=OOsTVq0U5HyXDVlsGoJmm1hx8DpbjGq-LIR32Zf_TQE,284
233
+ pythonlings/curriculum/checks/lists/lists6.py,sha256=-Z8RZBYYeS0_donI8jifuHyUNSxIab3jcagLDChGNzI,203
234
+ pythonlings/curriculum/checks/lists/lists7.py,sha256=9n0HLyrhuSvCHuUtpoplDjzL-x-D1hGKiywFEOrl8UY,220
235
+ pythonlings/curriculum/checks/lists/lists8.py,sha256=29I8dvDoAexUVNoDPjcr8usNXxuobKCvMC5NeA0EO4Y,338
236
+ pythonlings/curriculum/checks/lists/lists9.py,sha256=k1TiDT35Ynlyya3VnCrxsQglhAaGQgwYmZRp5Mlbdf8,232
237
+ pythonlings/curriculum/checks/loops/loops1.py,sha256=k7qX7mrS3yZ0eEDm102fCYP-TEJcmi2HEESXBOk8-Jc,75
238
+ pythonlings/curriculum/checks/loops/loops10.py,sha256=HOQUhDyj8pdnOFa3NUqrHgbr0V4HjnYvkpghSxsWMh8,523
239
+ pythonlings/curriculum/checks/loops/loops2.py,sha256=FnOQzPzIZBXF0nTDx8mFiBBA7fxrVWtsuBaTjpSiJD8,136
240
+ pythonlings/curriculum/checks/loops/loops3.py,sha256=Xj7qmoGa_apL8n1Jk7vST4i5wPTHXaq56bBFgACqWz4,102
241
+ pythonlings/curriculum/checks/loops/loops4.py,sha256=SgspcQmt0LBO9ot6uisxXYqie0rswVhHuVCXT4F2Mrk,152
242
+ pythonlings/curriculum/checks/loops/loops5.py,sha256=2D5ZnCU85WDA3Qr3Wr8a7J03m_MWF5n58zaSTo-cy38,93
243
+ pythonlings/curriculum/checks/loops/loops6.py,sha256=V3W_6V2FKA-9VKOSevShU2f_DiLVfuW6yE-wbOPTpWo,96
244
+ pythonlings/curriculum/checks/loops/loops7.py,sha256=Mk1eJKgEg3slJgVSzLhSILZJ4jDoP6FD_SOlR0L451I,122
245
+ pythonlings/curriculum/checks/loops/loops8.py,sha256=WMf9ehshE5JZ9T_8JldoSh8LyICzdF7gzsGwMUi6yj0,132
246
+ pythonlings/curriculum/checks/loops/loops9.py,sha256=vI4T3t2oK4icTOH-I1kQ_yHKpAQOVoehaXVbcSaWo70,159
247
+ pythonlings/curriculum/checks/modules/modules1.py,sha256=xK7-sie-jWydtNvr5_Ef0OIYgRZBTOrijbbE-i0OXYc,87
248
+ pythonlings/curriculum/checks/modules/modules2.py,sha256=rZR-u4OcoDg58ep7EE7FgJ7JRgSwhUoeb7Qlg3LMRCk,75
249
+ pythonlings/curriculum/checks/modules/modules3.py,sha256=EJzOV92DgVoTAVqXLbOEPRTNodx41-AYCINc2laVGKU,191
250
+ pythonlings/curriculum/checks/modules/modules4.py,sha256=qckD_26G7QTlwX-B-q_r1cCoS8Y1xqfVpDSDf5nuxWw,231
251
+ pythonlings/curriculum/checks/modules/modules5.py,sha256=bwqgnnYB-T_b8Eaf8OHt9AWoohL4k8-c5orZer6SWrQ,326
252
+ pythonlings/curriculum/checks/modules/modules6.py,sha256=chrrKW2Ht2xAzuo2HrYzft-yfr7i4MZcL0oC7YP0w1Q,142
253
+ pythonlings/curriculum/checks/modules/modules7.py,sha256=RdGT_Q87km4NCleJey5mgZAH5ZFKfPT6-Gk69nS5xCY,133
254
+ pythonlings/curriculum/checks/modules/modules8.py,sha256=4lLU4hu7XnGdlxL9KzoW_M3cNgU6fgSyBPlG9Myjh90,537
255
+ pythonlings/curriculum/checks/oop_advanced/oop_advanced1.py,sha256=wkjHORK_GOC-CZJ5mcPYgjOIy9R9Qr_cHcpmgbW8boE,99
256
+ pythonlings/curriculum/checks/oop_advanced/oop_advanced10.py,sha256=-smMXa2p27CGieaFRYg1GwH0WElk_LqjrRhPg5QkF6c,90
257
+ pythonlings/curriculum/checks/oop_advanced/oop_advanced11.py,sha256=KKJRQ5gjVZbyUEr9gQNowU137hUXZFJa5XpXoOjS4nw,115
258
+ pythonlings/curriculum/checks/oop_advanced/oop_advanced12.py,sha256=vtonnpi6apMMOL7kFot3QObCSqZbTZQRJEU8NeQb3zc,136
259
+ pythonlings/curriculum/checks/oop_advanced/oop_advanced2.py,sha256=szwvcbS4XlFEmEasWXOc-yrV-70-PtcYACrtkHijO2g,130
260
+ pythonlings/curriculum/checks/oop_advanced/oop_advanced3.py,sha256=JI3wJnz3CFBiwLtT0KhCHzrGpYuJt7sWe5kO9UiDr2A,96
261
+ pythonlings/curriculum/checks/oop_advanced/oop_advanced4.py,sha256=kSu4_5o39UduGM27UHXhm9fhc_dh8dCdVOFk2ZARo5o,71
262
+ pythonlings/curriculum/checks/oop_advanced/oop_advanced5.py,sha256=MCibgXVuOSjwmb1qpQj14D-pcF_xXfJf05Fk0HIVxaY,97
263
+ pythonlings/curriculum/checks/oop_advanced/oop_advanced6.py,sha256=qhZhmkt6cOFy_rvYqDJTkHm5e4TV7DOTww2dPOPRIuE,72
264
+ pythonlings/curriculum/checks/oop_advanced/oop_advanced7.py,sha256=4FQVWBKlmmlbnXD91857hLyxvVz0VWYYjyd278-wfds,114
265
+ pythonlings/curriculum/checks/oop_advanced/oop_advanced8.py,sha256=z5o6AwvKnwuzG4PDep8IL1X5m4JS1WbXxr5KB1EVNOA,98
266
+ pythonlings/curriculum/checks/oop_advanced/oop_advanced9.py,sha256=SjVahSX9dLcoD7jzqjChF8JS-9_db7FvlmE660tNn_g,130
267
+ pythonlings/curriculum/checks/pathlib/pathlib1.py,sha256=-4TAO1o8gDOciw2OhAkvRaHE7wxS4cO2GrsqwIVApq4,117
268
+ pythonlings/curriculum/checks/pathlib/pathlib2.py,sha256=Cp95lu53wN5T3gPQHqCsMJj1pBh9jYc_BXsSFQX9U-Y,96
269
+ pythonlings/curriculum/checks/pathlib/pathlib3.py,sha256=1v6gYUN95DbC5cHL37_HZ7ev-gf_ZLtQPn2M18Z5aDo,123
270
+ pythonlings/curriculum/checks/pathlib/pathlib4.py,sha256=yaGIKsNjrWMAPp-EWpXMBkdqzskcPVlHUbvgomSGKqo,105
271
+ pythonlings/curriculum/checks/pathlib/pathlib5.py,sha256=FjQ-w1utz9_1GTKryM-KY8ECafEgzDWKQTHmb6HnNtk,89
272
+ pythonlings/curriculum/checks/pathlib/pathlib6.py,sha256=vvjmfdRr32HnlhgCsVy5j2d0GbYM3mTTCx_W-02dfHs,131
273
+ pythonlings/curriculum/checks/recursion/recursion1.py,sha256=Gu_3Ye83BPD1KeSZEV9oGokZj51scArJ94xdT5nZtUE,159
274
+ pythonlings/curriculum/checks/recursion/recursion2.py,sha256=FMLOmgYW1fYoxoBgbutv5sMukwI0ydEYyN0lZPBckVA,128
275
+ pythonlings/curriculum/checks/recursion/recursion3.py,sha256=HKruoUhhVEXGxxh6VcLh7bGObZ5weM---2k3WevTJOc,207
276
+ pythonlings/curriculum/checks/recursion/recursion4.py,sha256=DIWKYIrmiNgt4xZQ76-dnaJkWCsyk9kW74OABzAq3L4,205
277
+ pythonlings/curriculum/checks/recursion/recursion5.py,sha256=n2yejrprPtFwtwwTYW_GGVxzg9CD2VECYJqCCudT94Q,177
278
+ pythonlings/curriculum/checks/recursion/recursion6.py,sha256=4wTuFM2PeI3nMjI1E-at-qGEpxfBKQ7dxkDr8bnUH_s,258
279
+ pythonlings/curriculum/checks/recursion/recursion7.py,sha256=3EgPFv_ae96WR4FWwdU6dd9IMQ0whxWr56Iqp7piHto,249
280
+ pythonlings/curriculum/checks/recursion/recursion8.py,sha256=hwvttUyCihrpMGjS8XEEQqoQvvdLXwJflCDj5oNWZ3A,574
281
+ pythonlings/curriculum/checks/regex/regex1.py,sha256=IePgGp5umW34-jIhnjE_9K631UmwOnHMEZO1JnR9kw8,158
282
+ pythonlings/curriculum/checks/regex/regex10.py,sha256=TqH-Z8d1smQwg5Inlo564Xk7xfV5YaETLxsDH3uLuBA,843
283
+ pythonlings/curriculum/checks/regex/regex2.py,sha256=xlK2KKpzJuS4E_v1gcrDxIpzJhv824TNa_7dHK_ezb8,160
284
+ pythonlings/curriculum/checks/regex/regex3.py,sha256=wtkHrN0huRhTwhHmGIPCczTWIQzUnJyjjMRF-G0Hr30,106
285
+ pythonlings/curriculum/checks/regex/regex4.py,sha256=oJWKc9k3kJEdV0aS9phywkyeqi_4WlU7rZAGNjXLwFA,143
286
+ pythonlings/curriculum/checks/regex/regex5.py,sha256=ApjjAEKhUJFJiIcEufwSIFKx1GnV7JJD_44TiSg5gvc,118
287
+ pythonlings/curriculum/checks/regex/regex6.py,sha256=kkzEbaC-WjAJAiryXPWDna4hdm9gHG0B4Wu57MeLLek,440
288
+ pythonlings/curriculum/checks/regex/regex7.py,sha256=E305cslb9NU3QWzt7PeSQnP57N4YZZC1J2OhdRY_TrE,301
289
+ pythonlings/curriculum/checks/regex/regex8.py,sha256=uTso_a4vUQp8DIsuk788RfQ0anzf1XiTYsKl6YXGjQE,261
290
+ pythonlings/curriculum/checks/regex/regex9.py,sha256=gKlk5eFwFafea8j-2aF54RyRiLwEoor7W3YhF9c4J6o,412
291
+ pythonlings/curriculum/checks/sets/sets1.py,sha256=7SwiOeGtOnQMXedn5_wbt2TtdJXV25rQnitwLWhTTt4,179
292
+ pythonlings/curriculum/checks/sets/sets10.py,sha256=FYl0trUE82yIL0k2Bdd7fUea_vTJzs5fwHy4GUyrDGo,727
293
+ pythonlings/curriculum/checks/sets/sets2.py,sha256=JbAzgcnDtvetP6JTjd8ihg8924l77Pr-RyrZxZ_FG2A,322
294
+ pythonlings/curriculum/checks/sets/sets3.py,sha256=bWfRlNsfLqReMtmYCl61No0942eIO7fS8D6FxJePJLQ,345
295
+ pythonlings/curriculum/checks/sets/sets4.py,sha256=7ZWPBtu4iyJmKIssxKTZ1R6fJCuV0K9RNhkQXPeJ3J0,180
296
+ pythonlings/curriculum/checks/sets/sets5.py,sha256=JekO9nqv6HC3LVubVmiFrRu8I8vPUqj8QqFy7Bwxsa4,146
297
+ pythonlings/curriculum/checks/sets/sets6.py,sha256=6_wR0QdcNlTwLQpLsmDw-lM5gnFOU53xS1wXBZWCboc,161
298
+ pythonlings/curriculum/checks/sets/sets7.py,sha256=PQLF2JE4tZrE7jl2gQAUjZk9N2fxqJD6aiDtzaRNlQM,310
299
+ pythonlings/curriculum/checks/sets/sets8.py,sha256=138YAkaMxRH-ICfmAz6kGM4O3vVxubyywe24D5yX8wY,359
300
+ pythonlings/curriculum/checks/sets/sets9.py,sha256=cYqfwJefvHXI87uUgqqgSGDCErfLeRusiinEZHPpXP8,212
301
+ pythonlings/curriculum/checks/strings/strings1.py,sha256=hNTVrOegpcW9maps8mxP89F2eEcJW8LaY3Z0zKrC6j0,146
302
+ pythonlings/curriculum/checks/strings/strings10.py,sha256=RgxNdJdJg2VvdBzDmkau7Us48snAgPkXwzheqsrZlQs,225
303
+ pythonlings/curriculum/checks/strings/strings2.py,sha256=EJeyJoEsgrVq1TrroeT9sv0SCfhaZt9nU8a3G0bomgk,181
304
+ pythonlings/curriculum/checks/strings/strings3.py,sha256=qkTH6YY0dhJQDiLUDuge2Vo-CmSTWFuP7DOUunBmzkw,167
305
+ pythonlings/curriculum/checks/strings/strings4.py,sha256=-7s2pp_1nvnhtzdxAYnQg3pCEtZdgJh9zSPwCzSEmb8,86
306
+ pythonlings/curriculum/checks/strings/strings5.py,sha256=Tdc1K0B0l6qje6LIVkHTde05dl888aMKsmKMd6Zodvc,246
307
+ pythonlings/curriculum/checks/strings/strings6.py,sha256=deXc5B02jFOuxsIuXIrCoWDUDJA0PlKHg-hn2KlNozA,225
308
+ pythonlings/curriculum/checks/strings/strings7.py,sha256=ClLnbju1mJiYQPCdB_C0o7e6tlGOIPQhIRwuePJ0CQo,241
309
+ pythonlings/curriculum/checks/strings/strings8.py,sha256=Ui-h347QWve4Ugz2ZGIRrJ-ibHifQGG6NxWdVeIF2lw,242
310
+ pythonlings/curriculum/checks/strings/strings9.py,sha256=w-mvpPfrQQjvWZ9U-oBEmm1VHLVaKa6hZK2K3HGz484,171
311
+ pythonlings/curriculum/checks/testing/testing1.py,sha256=F0gb3eH8jO1s7h27u6qhNKjVJ6fiy3OaHcG9bKZu_ro,72
312
+ pythonlings/curriculum/checks/testing/testing10.py,sha256=f8w3wIU5CeVcMNzZykfv6Ky7xmT7Hdm7T42PNQ0vjdk,275
313
+ pythonlings/curriculum/checks/testing/testing11.py,sha256=JkjVNB6twfttSZJPKjCiau1lLA5ss8xjInf-gBh95zs,244
314
+ pythonlings/curriculum/checks/testing/testing12.py,sha256=I42TsOIksyER6vwMeIZvWoAeR73kA6tA5-MaDDohuzE,402
315
+ pythonlings/curriculum/checks/testing/testing2.py,sha256=NuP9HYYQovXc90B6hjtPM-_Svgq2IRaRSb5NrZ0GaH8,71
316
+ pythonlings/curriculum/checks/testing/testing3.py,sha256=PtQAJdQB29qdu_36qVhOJnOyNRrgBChDF80iJxc8ahs,399
317
+ pythonlings/curriculum/checks/testing/testing4.py,sha256=l8nzfWkew3X1Kb3DbrFo9B4wKQZ1MJiJPdIK-6GXHpc,176
318
+ pythonlings/curriculum/checks/testing/testing5.py,sha256=33II-V7BLH2Dr-lh3ua6I9OJKTseuXj4zdvliOV7oGM,170
319
+ pythonlings/curriculum/checks/testing/testing6.py,sha256=reMIOmMDSx4Il1jvP5vdsqdSxb88nQHUgl5CJB3JF_k,520
320
+ pythonlings/curriculum/checks/testing/testing7.py,sha256=tzPtcEpE-su6a3tLzvtNEILakNP5-Zfzhk_7cKIdqXo,554
321
+ pythonlings/curriculum/checks/testing/testing8.py,sha256=XV4omKLX9UOJ4lYXmVd5SMkU6Rpka6XsIViPaoeNABw,965
322
+ pythonlings/curriculum/checks/testing/testing9.py,sha256=94Cv2PuPIDgvtfA9AlKGOelHlJA8E7-vQSwqsBCd9og,511
323
+ pythonlings/curriculum/checks/tuples/tuples1.py,sha256=eIp2ZekApwszqRe6PqE9gXCIbQmaUvy6j-RnLmKCg2c,145
324
+ pythonlings/curriculum/checks/tuples/tuples10.py,sha256=ztonOynk4Q6bGeWqAg9dJCJ9ozBhxkVdO4ekffGMEWs,288
325
+ pythonlings/curriculum/checks/tuples/tuples2.py,sha256=HPY2NhVpEuPVP0QN20ONwhQ4vFy7bdFgHKYgsU81w6g,126
326
+ pythonlings/curriculum/checks/tuples/tuples3.py,sha256=rz2ksSpt6DT63dT6vg5XNQageVX1QmyTAN_5sEGlIQE,156
327
+ pythonlings/curriculum/checks/tuples/tuples4.py,sha256=HUaSG-tEzkI8cqaKvVG0d5wTCNGZZxmMw-z2btmHoSI,168
328
+ pythonlings/curriculum/checks/tuples/tuples5.py,sha256=3q2YFKqzJmPSsyunhJYUTcnjo1Uno_PLXLmt7wdaPo0,231
329
+ pythonlings/curriculum/checks/tuples/tuples6.py,sha256=3XkV2RN-5c5jNKdgeTAwbhzp4CaWnOtAImj-DVNlNn4,279
330
+ pythonlings/curriculum/checks/tuples/tuples7.py,sha256=s8MbOk0KMnvtIHdKuXNhIqL-8S3TritucpGXBb-oDNk,131
331
+ pythonlings/curriculum/checks/tuples/tuples8.py,sha256=_WnwoKgXUMb49d1MYZO1NLkkjMcG98nZ4hPvbiB6xnM,120
332
+ pythonlings/curriculum/checks/tuples/tuples9.py,sha256=kqhPc8aJzcI6gPq8ZGSVrAS0YjeZMma3GxHeJSP5lGw,354
333
+ pythonlings/curriculum/checks/type_hints/type_hints1.py,sha256=UFFDjx6bgsB5ycNGXLk1b3VE9P9H2ILuAj4fbv3F_0Y,173
334
+ pythonlings/curriculum/checks/type_hints/type_hints2.py,sha256=fDVtRl9RxSdLM8ea-K6W-x6Whjk7-Fk3_iJcDGHx4ms,258
335
+ pythonlings/curriculum/checks/type_hints/type_hints3.py,sha256=zU_GeF8JAg7zkfe4MchpX-o5aWJaaqv_H73YA4F96sM,298
336
+ pythonlings/curriculum/checks/type_hints/type_hints4.py,sha256=x_Qt9nR1D9ruZKp8KHezvjtJHkxuyQFdpZbW1B0bR8Y,295
337
+ pythonlings/curriculum/checks/type_hints/type_hints5.py,sha256=LEOKEp4smT6jIbC8rL9jC4JAXOBdEzU8D5B40ZiSVJI,312
338
+ pythonlings/curriculum/checks/type_hints/type_hints6.py,sha256=TsW-aZ_-8B3rRQjzVN33G5HGDrcpBuJAzNJqbwjk3bU,455
339
+ pythonlings/curriculum/checks/type_hints/type_hints7.py,sha256=CkdH9ljdLITp1WqfnNcL2UewrYVis-0nyQMXguzvc6o,386
340
+ pythonlings/curriculum/checks/type_hints/type_hints8.py,sha256=zzVgkAJzxPxl_LUku5bhHh3WIG3XW_IlwV9Z25jViFc,443
341
+ pythonlings/curriculum/checks/variables/variables1.py,sha256=CbaFps8sGW-dv7Z70kcZ4FlaHG3UdcUE3asfDMveBQA,222
342
+ pythonlings/curriculum/checks/variables/variables10.py,sha256=8h2AnJ8Mgkgc2eW80Z-cCDedefDHIKG6Ge3Aed9enHo,221
343
+ pythonlings/curriculum/checks/variables/variables2.py,sha256=ImX3gDYp6UVcJ1xeJqJzmCaL4IsFDR8crF7IE6_8lzw,578
344
+ pythonlings/curriculum/checks/variables/variables3.py,sha256=6krEHmZcDmZu1H2ME0YF94MuxIaQDB5h8iEkJ757nqk,223
345
+ pythonlings/curriculum/checks/variables/variables4.py,sha256=6XaBjo-RCQKHa2Y_KEpgTBET5B2j4yX90XSiVKMtv5g,79
346
+ pythonlings/curriculum/checks/variables/variables5.py,sha256=2S0Kwaz__IZEEwXceE6obu49rUWuEnBJdfRjxGhIz48,79
347
+ pythonlings/curriculum/checks/variables/variables6.py,sha256=e8D63mrT6E12z8sCaz5zdP_D5i16pqgkDnQgSFrKMbs,148
348
+ pythonlings/curriculum/checks/variables/variables7.py,sha256=N1Q5vk9HV8OSRCHtFy4sLXUNf9bgymDQpiz9WSVd6Y4,132
349
+ pythonlings/curriculum/checks/variables/variables8.py,sha256=9232SlOusUV-t0tKCPSllyKDWUY3USJprr2_vQsQcww,279
350
+ pythonlings/curriculum/checks/variables/variables9.py,sha256=PbRddQ0rlU7VYXM7JkKLdPBfPoj4Myl2CRd05hag6rg,167
351
+ pythonlings/curriculum/exercises/async/async1.py,sha256=UVbanXievsCC9TZ-VmfvYwwWsrU8stNS0q_Wi4ExTkc,133
352
+ pythonlings/curriculum/exercises/async/async10.py,sha256=ICUVNOQct586_f3OzLWLoE4JTbkrJF_1ZyG7tuuHf20,291
353
+ pythonlings/curriculum/exercises/async/async2.py,sha256=kDILXBXii-TkW1NcSJH70FQL-zULsa6uoibBWm3dt38,171
354
+ pythonlings/curriculum/exercises/async/async3.py,sha256=hLVJxfB8OT8jRCZ4aMu3MuJ5gzDuLAA2NDnth8GNkRw,157
355
+ pythonlings/curriculum/exercises/async/async4.py,sha256=bg6Agg3gTNgkaspsO-eMdBFnlI6jGnoBiTNI_kzEB0Y,236
356
+ pythonlings/curriculum/exercises/async/async5.py,sha256=2EChEntrQqVsdFzyMG6VunwS5ONN8ZTrxrHYxP7RqQ0,210
357
+ pythonlings/curriculum/exercises/async/async6.py,sha256=dbX8I74Twkz1HKE6IwuWuYZ8kG0AbRWBEK55Gu9l0JA,269
358
+ pythonlings/curriculum/exercises/async/async7.py,sha256=R9nCfNMnY9y9-PGlQFLXamfJkXCUCQMRiqQLYniIaTs,225
359
+ pythonlings/curriculum/exercises/async/async8.py,sha256=1nLVMb1f__Yn0Lep8Alc6p0dWjxwhHk0b1SuaFg71YU,166
360
+ pythonlings/curriculum/exercises/async/async9.py,sha256=afeD7P4YU8J_5OlUD-884rhCYZAq63z2oPSm3b211Z8,230
361
+ pythonlings/curriculum/exercises/classes/classes1.py,sha256=yjbSLtx24PtKMnrJA2y2JYBBl4Ul43Qk01U5nVsWKCI,298
362
+ pythonlings/curriculum/exercises/classes/classes10.py,sha256=O1G9_RpSVEKM0oiHCEku5EWTQ0QhcD-CSIRTSZ0-eKA,703
363
+ pythonlings/curriculum/exercises/classes/classes11.py,sha256=ZmLW-BkL7qOpZI5UIN4JYPOUhZzciGL2n6nC9zDHJJU,624
364
+ pythonlings/curriculum/exercises/classes/classes12.py,sha256=_Yqde8DN-2EQojPwh_Xwdy1Dyl8AghsPOKY6-N2bxHg,1070
365
+ pythonlings/curriculum/exercises/classes/classes2.py,sha256=pj7Khif9x7gn4PQxdLvHrDuiiZT4spND25fsPMzYVbc,250
366
+ pythonlings/curriculum/exercises/classes/classes3.py,sha256=Eih0NL82MZmzn0uSAfj7zjPvtLpxs97aoyLdXW615f0,298
367
+ pythonlings/curriculum/exercises/classes/classes4.py,sha256=CjJFuH2AKKcDnhVATzr2C8EQnFP26HGSiUSu0H51-fs,328
368
+ pythonlings/curriculum/exercises/classes/classes5.py,sha256=pbGPkOGJETlhQdl024MlHt9k2B5SqZfcAra-IFL3hpk,344
369
+ pythonlings/curriculum/exercises/classes/classes6.py,sha256=Rp8kDVosgV4qw8okl7zXVMJF-SOu7bTCzG2qSNrMz4Y,390
370
+ pythonlings/curriculum/exercises/classes/classes7.py,sha256=FzftTgg3qL_XXkm8eQatxTW5pAl2dkzkVQ8m3UUOsHk,374
371
+ pythonlings/curriculum/exercises/classes/classes8.py,sha256=JZMVX7oMaY26qBTp2wRBY1SfPRJDBRoWACCG1BYj3BI,366
372
+ pythonlings/curriculum/exercises/classes/classes9.py,sha256=SLZy3KqZ7njgphiMed53pmQ2-IhApoB2FZykyVeDDAk,426
373
+ pythonlings/curriculum/exercises/collections/collections1.py,sha256=SV8oS6Ix1lka1yw8K0aoTMqBKeWQUFRqZNtGY-rIngg,306
374
+ pythonlings/curriculum/exercises/collections/collections10.py,sha256=pcJb2PMBRRbnyZVHmYAhPqBc0doOpNVyek5SBgGZpfI,1182
375
+ pythonlings/curriculum/exercises/collections/collections2.py,sha256=s8s7bBZHMn920jDUNDADVP1HXZq_KPrtikO3SJrEuoc,500
376
+ pythonlings/curriculum/exercises/collections/collections3.py,sha256=IglUkFgsanraCRbsmBjJpbFWVulIWuQr_kUZ5J4xH7c,480
377
+ pythonlings/curriculum/exercises/collections/collections4.py,sha256=I8lYw_uCNtU4GcD8pxYIgf-ln_tBm8PEOXA7hbO11HY,652
378
+ pythonlings/curriculum/exercises/collections/collections5.py,sha256=Syr9333qyOV2PhjegBnpcWxyMKcQQUYpXkz0g2KRFh4,368
379
+ pythonlings/curriculum/exercises/collections/collections6.py,sha256=InyDL45An64C6qgCYT6TQ_SMAh-TtNlA6MrQNIo45to,564
380
+ pythonlings/curriculum/exercises/collections/collections7.py,sha256=Hr2EL6vXXVva61DghdJOu1eh2YJo5Y1CT2MLnMj8qI4,609
381
+ pythonlings/curriculum/exercises/collections/collections8.py,sha256=ydu1F6eKifnVAonj5rW0Ug6rZYUSzSqnmgBax29UccU,512
382
+ pythonlings/curriculum/exercises/collections/collections9.py,sha256=6j5ux1-xLPXE_buf5gWg2177D1gnFozuKlGZb68aOyk,697
383
+ pythonlings/curriculum/exercises/comprehensions/comprehensions1.py,sha256=ulQ94Gsg4k4UdWLbnOtkEeDcqx7apKiUNbInrtxAUgc,296
384
+ pythonlings/curriculum/exercises/comprehensions/comprehensions10.py,sha256=LUki6jbeJlBUTllYLxOXQFVqcHeI6a5_dt5TU9p9dOc,488
385
+ pythonlings/curriculum/exercises/comprehensions/comprehensions2.py,sha256=zLUw5ScWCWeWMlBK2ZeqPFF5ZLateUKsV-Nw0OhO_S8,325
386
+ pythonlings/curriculum/exercises/comprehensions/comprehensions3.py,sha256=mh53_TjvDXXx-LOGnGAUmveB_E0greRbNBmt_ZB6k0U,298
387
+ pythonlings/curriculum/exercises/comprehensions/comprehensions4.py,sha256=A7O9C4aZhn2Kqju9vZ2w-t_e-tSh-jxwONEGJ9HVH1k,412
388
+ pythonlings/curriculum/exercises/comprehensions/comprehensions5.py,sha256=sUEvN_xp8nmsJ3uvGP25uFKG6t4i-O6pcKXmh5mI78Y,326
389
+ pythonlings/curriculum/exercises/comprehensions/comprehensions6.py,sha256=8oojF1sGEour5pddiFMxbj726uJkzJcws5k5TgcEy7U,343
390
+ pythonlings/curriculum/exercises/comprehensions/comprehensions7.py,sha256=ylrn-iv2nWMjjaYl6CRKJMKYTjhNugRZzikd-0Pvjyc,388
391
+ pythonlings/curriculum/exercises/comprehensions/comprehensions8.py,sha256=pl1qSaMtoqnFEq9V5Dmo1T_0Yxi_WeHNbTE7NDthWW0,489
392
+ pythonlings/curriculum/exercises/comprehensions/comprehensions9.py,sha256=Y2uKZfxrLelgPyXb7ZOwta0pr0MNDqk2_i1asjdKxME,361
393
+ pythonlings/curriculum/exercises/conditionals/conditionals1.py,sha256=oYaUgT9YcsVbZuJKV095qnUA3_Mtd14_lZ1vFuI3rtY,416
394
+ pythonlings/curriculum/exercises/conditionals/conditionals10.py,sha256=CO84YYNe9GFuFaedlJacc5JfJeitf5Awfa9mHVQrRG0,500
395
+ pythonlings/curriculum/exercises/conditionals/conditionals2.py,sha256=b-XnyvAfMOiqSSHKGU-N9poDIFfRLNcrVZ5aB5qosmY,304
396
+ pythonlings/curriculum/exercises/conditionals/conditionals3.py,sha256=TU2NsNucJw2YhBfj_R-RrZRdZ7BPh1EJa0JEW0M09UU,435
397
+ pythonlings/curriculum/exercises/conditionals/conditionals4.py,sha256=MHXUsiIbt70Ii9981IloqpmdFcw9HSMFf5qoWGwdMaA,495
398
+ pythonlings/curriculum/exercises/conditionals/conditionals5.py,sha256=bqtXKb5cFijVtKJCbCPqxEVzd01ZTnaF_KQTAFj1ZxY,578
399
+ pythonlings/curriculum/exercises/conditionals/conditionals6.py,sha256=AlAl9spONRlIod_aJErvywW26GChx6FRXABSfNyzMqs,452
400
+ pythonlings/curriculum/exercises/conditionals/conditionals7.py,sha256=P2XhHGXneiMHBpZYiL3HDLoxpUlySOFZFOXLjtLj33g,459
401
+ pythonlings/curriculum/exercises/conditionals/conditionals8.py,sha256=d_U3fOjtGX__0dh5PhAm4K6sJo32il0CPIqlPnhCpXk,509
402
+ pythonlings/curriculum/exercises/conditionals/conditionals9.py,sha256=Nax5B5tsPQ58SZrR6xpgut6urojX2fMEKU3bZdeOSIM,356
403
+ pythonlings/curriculum/exercises/context_managers/context_managers1.py,sha256=_abefbXgRA6k531UJ12iLDYcD2wBzhy9g2SoLV-u0CQ,581
404
+ pythonlings/curriculum/exercises/context_managers/context_managers2.py,sha256=7GIsOiakWZe34LtryZjC-NZgtStqF-vXqzC8G7HnkTs,686
405
+ pythonlings/curriculum/exercises/context_managers/context_managers3.py,sha256=LNF07t5yytpceNLYFXDel3aKmzxIhLqwHXsSjrpEFEQ,605
406
+ pythonlings/curriculum/exercises/context_managers/context_managers4.py,sha256=u26VEnia96gCkE9OpqTupV2fSV8UpUWI-VUqrjzGjaU,789
407
+ pythonlings/curriculum/exercises/context_managers/context_managers5.py,sha256=nWzB8V-Gsi2m8b8pSINjQQGf60g_7_OfrfQpIz9B5-c,868
408
+ pythonlings/curriculum/exercises/context_managers/context_managers6.py,sha256=Taglhyh6r-Not5Ewxis3SS_E8erngkGZaPzQg5tZP_s,782
409
+ pythonlings/curriculum/exercises/context_managers/context_managers7.py,sha256=L2Yila3yXjsIzmyaEA_-aXZQOU4JsV5lyZ4SBy7yI1I,981
410
+ pythonlings/curriculum/exercises/context_managers/context_managers8.py,sha256=PF_8xenn0pri7zgQQJrS6QZCOP7iCtluPtXCauyH_kU,1296
411
+ pythonlings/curriculum/exercises/dataclasses/dataclasses1.py,sha256=2CjHtMSMnPVTnef6AqiPx8WWni5Zo2f5s-bS8Kd291o,260
412
+ pythonlings/curriculum/exercises/dataclasses/dataclasses2.py,sha256=OvuaRYfyqpDI3scHPihnd49Aiy1J8AIQg1ZUAMY5jfI,566
413
+ pythonlings/curriculum/exercises/dataclasses/dataclasses3.py,sha256=b9lm1OJTX8g2QVxI9TnOn_1wtt9vNNVPTw4fFoXnT-o,532
414
+ pythonlings/curriculum/exercises/dataclasses/dataclasses4.py,sha256=RdWfmSqHCu5cOVvHoMzenA-83B5veVrUsL07KIDZnGk,679
415
+ pythonlings/curriculum/exercises/dataclasses/dataclasses5.py,sha256=uKnrUZH8I5f1G7O64rHAr2v72vFoaip7s2gU3M5I29g,694
416
+ pythonlings/curriculum/exercises/dataclasses/dataclasses6.py,sha256=Sb0vBHamQvRZFzyrLbO7zfYpMyjUZGZr591WA_TKYKI,610
417
+ pythonlings/curriculum/exercises/dataclasses/dataclasses7.py,sha256=lD78jxszx3c7JuSZ9DjpDvIxrNhwpr_ISXuMXO8_BRQ,599
418
+ pythonlings/curriculum/exercises/dataclasses/dataclasses8.py,sha256=9marZGzTk-mt10zwWcpxEev0Eflfmfg6hVyRd2obqU8,737
419
+ pythonlings/curriculum/exercises/datetime/datetime1.py,sha256=CgF5k7kpDMOzi24KR4IWGockVtpJ3GtRhQN-gB1r-wU,126
420
+ pythonlings/curriculum/exercises/datetime/datetime2.py,sha256=XqUVcYnNEUanvVxVRfDAOO5b14YMYmTSe7UHyO7KePE,164
421
+ pythonlings/curriculum/exercises/datetime/datetime3.py,sha256=yaRbebzGd5ba4VLwaSJfS8ilcKKl2h1-YaCvZmqBkUc,171
422
+ pythonlings/curriculum/exercises/datetime/datetime4.py,sha256=5mClYt91R-6S8d9D7n3mkeLECE1b7L5-WUR1vpY0fWM,148
423
+ pythonlings/curriculum/exercises/datetime/datetime5.py,sha256=CSiqqAUx_A1NMMUJkVjXWjb9XxxvOJLpyydKSmf4EaE,185
424
+ pythonlings/curriculum/exercises/datetime/datetime6.py,sha256=UZkJfrtASR6BYUmUVZ3eNmuIkslYLgC8kHeP3Te9Scs,201
425
+ pythonlings/curriculum/exercises/datetime/datetime7.py,sha256=cDAu9xJFXmEQRKxoMbpfFLDmM0Z-_-xN884HzT8iwiI,199
426
+ pythonlings/curriculum/exercises/datetime/datetime8.py,sha256=RiLyvU1dXAzRJUPXok0QLWRgf1mE6dJSneYfdpaezxE,283
427
+ pythonlings/curriculum/exercises/decorators/decorators1.py,sha256=27_eN4ioN747b8DotEsHYfHM39H9o5KdM04Z5YYB5ys,351
428
+ pythonlings/curriculum/exercises/decorators/decorators10.py,sha256=VrUOPWqgLgGtixhtoSD1aAnjR7gjLeiXxaQM-hIENKY,762
429
+ pythonlings/curriculum/exercises/decorators/decorators2.py,sha256=3puUYUWs0a4z7k9wV8ZZo1387rp8nt0S39spA-n3-dM,435
430
+ pythonlings/curriculum/exercises/decorators/decorators3.py,sha256=ag_qapwJdSH1YgfRhXKolUrPV4kMYqQXxLDFt8Eo8gY,427
431
+ pythonlings/curriculum/exercises/decorators/decorators4.py,sha256=0TVt452lpFJVGKrDrihXTgmqc55ghbL9SSY4yVAVPmA,514
432
+ pythonlings/curriculum/exercises/decorators/decorators5.py,sha256=qT7ArTfgm_iXsU7X6-XL95H1I4enBi-J5oa8vF5QjfI,612
433
+ pythonlings/curriculum/exercises/decorators/decorators6.py,sha256=E2akLzge_72BK8vNKtsG7SjwfsPDqulHlXDR2JAacWE,481
434
+ pythonlings/curriculum/exercises/decorators/decorators7.py,sha256=XZ91WoFd8u39Bxiuaf9TjlIMVyPriaU_1Vpz0mbnZkY,663
435
+ pythonlings/curriculum/exercises/decorators/decorators8.py,sha256=dA_GzqmLw0kDBcmK_wGuGH0x9SQNwnFs_zC8C6Jaz6c,457
436
+ pythonlings/curriculum/exercises/decorators/decorators9.py,sha256=YhUtevyrMQlfNOVAbziR7UStUn-BP93OZpxGpzSvJ7U,562
437
+ pythonlings/curriculum/exercises/dictionaries/dictionaries1.py,sha256=D7csi9Yw6HVlUSIjaXCtjEoDi2k3ySJdry1iXAVFgTs,126
438
+ pythonlings/curriculum/exercises/dictionaries/dictionaries10.py,sha256=bVK-D_iZZBUR96EUXwaLsWfqtcru7p5j6dZMuuEySjo,484
439
+ pythonlings/curriculum/exercises/dictionaries/dictionaries2.py,sha256=9OfWvciNSXnUlbesAq0PN9lFaHqRvBW4LlHKCiwAHFc,240
440
+ pythonlings/curriculum/exercises/dictionaries/dictionaries3.py,sha256=if_FNQ56IyJMUA7hQBVGIEdKrXmWFBz0WKhZQ_nbTvA,372
441
+ pythonlings/curriculum/exercises/dictionaries/dictionaries4.py,sha256=OVoJ-WRnNPQAIgCuuOtFyqM_dgTVuTm46ELlYW5M3rs,429
442
+ pythonlings/curriculum/exercises/dictionaries/dictionaries5.py,sha256=hWxHLyLWrA1fyY8f-Pmiu9Fio3Zc3dbRFSqVpUXpXd0,499
443
+ pythonlings/curriculum/exercises/dictionaries/dictionaries6.py,sha256=0Gu5mNPKkCF3VQF4RGnMyikRTQfgGzKUYkfTWgY4SQQ,539
444
+ pythonlings/curriculum/exercises/dictionaries/dictionaries7.py,sha256=WHOWtaULBrLbH0oIOt1TqL9HIDeThC706VdZt6vN6jk,426
445
+ pythonlings/curriculum/exercises/dictionaries/dictionaries8.py,sha256=6g37Gj4_IkRbPwQHxXuhSd5VMs92VgRi5tryUqmgRHw,532
446
+ pythonlings/curriculum/exercises/dictionaries/dictionaries9.py,sha256=GEpphKc2uawaAsPUwB8_yZdDWDrCoyLox_DXPbXMEFM,728
447
+ pythonlings/curriculum/exercises/enums/enums1.py,sha256=L2_iw7pkuFZANn0M1JTEHkoIRZhxQ9p1EDCKp4_Oevk,196
448
+ pythonlings/curriculum/exercises/enums/enums2.py,sha256=dUYNPYzy0NZCZeRr-n0eIrleVpuh2AysXM5WmWi6hIw,178
449
+ pythonlings/curriculum/exercises/enums/enums3.py,sha256=xlNmwz3CU5fMCJj-PNPa3Flo79GSpknOxvWARm3sV2U,222
450
+ pythonlings/curriculum/exercises/enums/enums4.py,sha256=ZI0A8256a4ICt4TgoZxoY6t6coLgNouAJAcWEri98LY,199
451
+ pythonlings/curriculum/exercises/enums/enums5.py,sha256=ki8NpmLn1FM1JfFVjs_m-SA36spLUqzGtsBrRLONk_8,247
452
+ pythonlings/curriculum/exercises/enums/enums6.py,sha256=zHRIOPcv31BPCkjc6btoOJqRaFivC3uohb61SQPJUZw,280
453
+ pythonlings/curriculum/exercises/exceptions/exceptions1.py,sha256=puU9n_TjGDRHcemsxU5rnUVnm2RElQExnrea66N7d30,373
454
+ pythonlings/curriculum/exercises/exceptions/exceptions10.py,sha256=KBaodRYMdOy47xXib5vcRcQwKCcDaH2qOTlNd0FsdXk,787
455
+ pythonlings/curriculum/exercises/exceptions/exceptions2.py,sha256=R4R0LPgTDUszGtgwwvk9FnXYre5Pe1GizNsEOm6C7Ag,315
456
+ pythonlings/curriculum/exercises/exceptions/exceptions3.py,sha256=ksqqUwBTYLgg_r7gzUXF9Y7dNG_eFpPhpj-l0cjLEGI,405
457
+ pythonlings/curriculum/exercises/exceptions/exceptions4.py,sha256=Atxjt4aQ2OVhF94ZTPg3uyofs2JjRScExGsZGRMmk0M,546
458
+ pythonlings/curriculum/exercises/exceptions/exceptions5.py,sha256=B7LaDRang5JZaMnuxbRB23nBnEpNfGs8tX4dMfrPNT4,607
459
+ pythonlings/curriculum/exercises/exceptions/exceptions6.py,sha256=gob6qPJV9hWmb_8FJBGg6nS5_agIH6ccmg8TD-ToSFU,321
460
+ pythonlings/curriculum/exercises/exceptions/exceptions7.py,sha256=SGsXotjo_wPJRwTECtPCSGYTjx0n71bAP8RlMBzohPc,450
461
+ pythonlings/curriculum/exercises/exceptions/exceptions8.py,sha256=-xoZx4qa-7SeN_33n_Yedl09TgQ-Fp4kapVZDY4LSYc,570
462
+ pythonlings/curriculum/exercises/exceptions/exceptions9.py,sha256=UD1X0DM-XBEImpQsbyiz82I-5BGoL463OdHolUUaqxQ,613
463
+ pythonlings/curriculum/exercises/file_io/file_io1.py,sha256=HBMNvf3FFcNUON2rrZl7sFHzAnp9MYGQq-PPEQU8SuY,488
464
+ pythonlings/curriculum/exercises/file_io/file_io10.py,sha256=Iew2CkvClM5y8Lp8vuZZ84opSPHO79GJVNNGKCf1GZA,770
465
+ pythonlings/curriculum/exercises/file_io/file_io2.py,sha256=adDys1BeUr17XchezErArrfd6VOfT-icSIv-NeU074Y,407
466
+ pythonlings/curriculum/exercises/file_io/file_io3.py,sha256=nzwkkWCFjnNw6ICgyA98DQLmw_DglRpGm6cnbTMj1bM,445
467
+ pythonlings/curriculum/exercises/file_io/file_io4.py,sha256=5Y_OBqMdGemqe8F5iXWTHWhCUZOTC0EfNueUljAa-lM,614
468
+ pythonlings/curriculum/exercises/file_io/file_io5.py,sha256=gg01XFEuQftAhHFfKHwZdMe14apGaY3pv26aMsLUaSA,628
469
+ pythonlings/curriculum/exercises/file_io/file_io6.py,sha256=HFQpYOG6QR8MauUlvjWgiEVIu1RDnNPyMw_p5K2XBuI,641
470
+ pythonlings/curriculum/exercises/file_io/file_io7.py,sha256=wamB0AO2-0dCJpFJ2UgqYJp_X4JRITmRA-twXj55BFY,674
471
+ pythonlings/curriculum/exercises/file_io/file_io8.py,sha256=8j2IP37j9oBPvEUdiKQ3uDBveNkniQNqfo0f0X0heoE,570
472
+ pythonlings/curriculum/exercises/file_io/file_io9.py,sha256=HESIwYbKGq34dxHaNHWYnZdoKgornuHi-oNWZz4ZOH0,638
473
+ pythonlings/curriculum/exercises/functional/functional1.py,sha256=JOf7OqOTVz_2l817uscKjQx0G8yduyxZLST1MVTVrH8,187
474
+ pythonlings/curriculum/exercises/functional/functional10.py,sha256=0EYd084GHjGsOsHhKRutPkMer8szlgw0GlvevMShqxA,611
475
+ pythonlings/curriculum/exercises/functional/functional2.py,sha256=Z9N3KheCdm-u7fGMh83-QfpJB5olhLh1mOIQ4EpW_YM,248
476
+ pythonlings/curriculum/exercises/functional/functional3.py,sha256=QkXlbRJDe9rxKhhJeRP4Cexl3wR4yjCjGYhpjh6uzZA,305
477
+ pythonlings/curriculum/exercises/functional/functional4.py,sha256=DAGYxyOKjVWpaYj4ZOtrrG_DiWd-FdyWCvZzIXZrsuU,339
478
+ pythonlings/curriculum/exercises/functional/functional5.py,sha256=Sk57okSyts7NtpPWLXawf97omd0C0OpbEfvngHGCGWc,365
479
+ pythonlings/curriculum/exercises/functional/functional6.py,sha256=itSkeQP_F9270AF2WVvF4kF_tUbk7p_R7EMiBcMPsIM,348
480
+ pythonlings/curriculum/exercises/functional/functional7.py,sha256=3FR0C2q8vOhmihOe-HvZMk_oSKoLrlMUWX8x8LLzbRE,345
481
+ pythonlings/curriculum/exercises/functional/functional8.py,sha256=POYVAoWB6U7m90MHSyBTiaZnf7xxAox4Xq56U0l2R60,374
482
+ pythonlings/curriculum/exercises/functional/functional9.py,sha256=BPEz6Rmdc4nQ3F3uklxNjse_dnvKtQumaBt11YL_huw,454
483
+ pythonlings/curriculum/exercises/functions/functions1.py,sha256=sU0Fd0qqod2M75fVtkCcuv1WMxJdoj99O33NdxOZX7Y,182
484
+ pythonlings/curriculum/exercises/functions/functions10.py,sha256=AlOp3hmRr2asX2kQ0CNYM6Aei6PiLmpmcUM137HYTqo,625
485
+ pythonlings/curriculum/exercises/functions/functions2.py,sha256=dIJdgqTgmzBD6_PrvxIjPcubexDJ0qSV71nP7d67Nh4,212
486
+ pythonlings/curriculum/exercises/functions/functions3.py,sha256=ib4QlOuK8vY0bih1zUkz7NkbwseO7a5T31rWc0lNabg,183
487
+ pythonlings/curriculum/exercises/functions/functions4.py,sha256=ebII63EVvXCsyFFKdiLqsm4oBH60kXJUnXet9NUcbH4,218
488
+ pythonlings/curriculum/exercises/functions/functions5.py,sha256=Zq6l7CtFmZbBdtMWAMDoef6RPLc-VB8JuAkOm_3rlmM,408
489
+ pythonlings/curriculum/exercises/functions/functions6.py,sha256=ChHMk_Ec6xT6UeOXnDCA71uJ-CXmWU6dl5Po6zpH1tI,533
490
+ pythonlings/curriculum/exercises/functions/functions7.py,sha256=8186Hp7oQb8UNnC_NT8GnvBkbcfb5EnwSrH1dAyJIkc,267
491
+ pythonlings/curriculum/exercises/functions/functions8.py,sha256=jNK6C3PKCnCh0buGAaMY0DDtDfX3cllcozSqO5fXDgo,327
492
+ pythonlings/curriculum/exercises/functions/functions9.py,sha256=Gvf__HrtbJNdq4ynstj0fxcz7hmQgXuwtyrnG1en14A,389
493
+ pythonlings/curriculum/exercises/generators/generators1.py,sha256=Lj7iNK_e1rfF17VQJ2NWm3gC1is_YQjX-2K3Adny97g,323
494
+ pythonlings/curriculum/exercises/generators/generators10.py,sha256=HxdADLuMUDsc3kzYDEbhpa5SBuQRCLtBSGp-AY7e9xU,478
495
+ pythonlings/curriculum/exercises/generators/generators2.py,sha256=pi0ndEKhG4hghc8dHHnsBCXaG4hkxmX6c52mdMJynUI,421
496
+ pythonlings/curriculum/exercises/generators/generators3.py,sha256=dMvoeGVNa6AjRntVXbU_hSe8hAPt0Jkdli5MzTvJbAM,506
497
+ pythonlings/curriculum/exercises/generators/generators4.py,sha256=h7H2s75gndSr9j7j9GpME8-vRm7yOPGuYcqgYkEUCBs,337
498
+ pythonlings/curriculum/exercises/generators/generators5.py,sha256=EhuPqdR8H0HxM26UhmUVllLSsi-D7jHco6anSPyM4dc,520
499
+ pythonlings/curriculum/exercises/generators/generators6.py,sha256=vBJUX3zBQsp7bkpDELGWlNoGjXHR9UeZ10GrFqujgo0,553
500
+ pythonlings/curriculum/exercises/generators/generators7.py,sha256=qg8gh1XDEGl6OrITE5_mT4isitrp6xHXOJrYi7jEQx8,403
501
+ pythonlings/curriculum/exercises/generators/generators8.py,sha256=rL78rlgjk5AFgCKKiYC_3QfXNFMgjfsO9CtizebVA3k,499
502
+ pythonlings/curriculum/exercises/generators/generators9.py,sha256=5vH0MqLmC0DLYUXyy-kpJxZThq5crXKbdJbsIs9tXo8,701
503
+ pythonlings/curriculum/exercises/itertools/itertools1.py,sha256=Vkhf_O4R3LTDwTk1y-cNsRW6gclNRxFm2of64DmWZok,208
504
+ pythonlings/curriculum/exercises/itertools/itertools2.py,sha256=dEE7p1IWr7vg1QIrQGFRIPW9-Ul0KRoGJ9T-TOjg424,182
505
+ pythonlings/curriculum/exercises/itertools/itertools3.py,sha256=2uJKm-IllBLE3aKk08uow40Y2C1Wx9c9yB1G5h4xQf4,198
506
+ pythonlings/curriculum/exercises/itertools/itertools4.py,sha256=6ox15W7dMgbXLLl7i2Mq5s5DfTsixqLkdT06qLzwZXc,301
507
+ pythonlings/curriculum/exercises/itertools/itertools5.py,sha256=jACSImZc5RigzkRgg4Qirb_Phu_7twPtCXDV46zSEQk,176
508
+ pythonlings/curriculum/exercises/itertools/itertools6.py,sha256=bWCxbstLlsTnpTxRJ28APMkOCUGlS6lEQsw2D57qR1Q,199
509
+ pythonlings/curriculum/exercises/itertools/itertools7.py,sha256=vjwURIXdWXV1MRmzre0nhb_LE6FjyhRlUrDchk389O0,196
510
+ pythonlings/curriculum/exercises/itertools/itertools8.py,sha256=dQet85AzzXK510g04g9MAY9Piy0JnoKDWRZx60wnUOY,452
511
+ pythonlings/curriculum/exercises/json/json1.py,sha256=j76JKpgECvqof6aj8L6x9AX6EI5wm0_DX0rrrj3vufc,183
512
+ pythonlings/curriculum/exercises/json/json2.py,sha256=qZXfxc5BOQKw7sMLeyy26Kitm4Owu6WNgBIktQsRMuY,142
513
+ pythonlings/curriculum/exercises/json/json3.py,sha256=Z--qevLdLfOlyfUC5qM_w2BtECqppl_XbGAJ1sZkMeM,210
514
+ pythonlings/curriculum/exercises/json/json4.py,sha256=jfFVXtqjsHtFqisI47cJ5L_XWMGNLdg7ZanM-PsVwRY,246
515
+ pythonlings/curriculum/exercises/json/json5.py,sha256=NKwZOlhNJeCl9J-p3OJNc8BK3lOI1kpWLLXYHjGGJW8,179
516
+ pythonlings/curriculum/exercises/json/json6.py,sha256=R5GIwkwhgVM3BAbpUypdW9cCxZzTIAfpipPIUIJV2bc,267
517
+ pythonlings/curriculum/exercises/json/json7.py,sha256=QOfXgsUL3FLcVTKLp3rJkjjMeKxbpZ4ydrU_MMx5abY,249
518
+ pythonlings/curriculum/exercises/json/json8.py,sha256=-9-g9S81PnDr4OwOAvRxjjHj0qgLUGdMxyXW1jAn4I8,328
519
+ pythonlings/curriculum/exercises/lists/lists1.py,sha256=05P_4no8k8rK5gcc5Mv8ncqFkm9fV7xdSdM7GNOFqqs,158
520
+ pythonlings/curriculum/exercises/lists/lists10.py,sha256=NpArWe8-bzUo_OTmO60N6T3r2lHn3uqdNSwL6EQ5TKw,923
521
+ pythonlings/curriculum/exercises/lists/lists2.py,sha256=HuWUTSNiSQYKWUnf-7s7J7rcYRpBKq5TuqCMCdOojP8,304
522
+ pythonlings/curriculum/exercises/lists/lists3.py,sha256=Y8h9c4ZswFc3G723F5BA5xgZfNl4tUjRKFppvi0-xrM,382
523
+ pythonlings/curriculum/exercises/lists/lists4.py,sha256=TEL_V9bNVQCLw4Qg0e1D0i92dhsVOE1zHqgEZO0DdC4,425
524
+ pythonlings/curriculum/exercises/lists/lists5.py,sha256=bweIB7MHROZfbn0W7ibJcQdBrLAS8-EPYbwyMfUl0Hc,529
525
+ pythonlings/curriculum/exercises/lists/lists6.py,sha256=ZPTjG2fYFxL3ytfHXcGD65ZVHkARX-jQvF72ndGxSDc,455
526
+ pythonlings/curriculum/exercises/lists/lists7.py,sha256=AyHpvJMQXzUZOWwnesDuYJwupvCHUfb_qgxcJmqjNbQ,443
527
+ pythonlings/curriculum/exercises/lists/lists8.py,sha256=IOGfTXlbG6Ge2SL18PqI3AnqxVEN-c0MSIIoMibNjaw,475
528
+ pythonlings/curriculum/exercises/lists/lists9.py,sha256=_3rqfOjAZtpaDXyPqBTYhgjx7uKg-9stijAbEB-eQFI,469
529
+ pythonlings/curriculum/exercises/loops/loops1.py,sha256=-5100CqUpAUrndW5My4fLqYo-EWUAR5qdZuYdr2wWiw,196
530
+ pythonlings/curriculum/exercises/loops/loops10.py,sha256=x95hoAaqSW3Iw6pJPu4pYqu-_HFARDGoIEfNcnG0Hbk,800
531
+ pythonlings/curriculum/exercises/loops/loops2.py,sha256=s5tkO3iQaOa7RPAs-CbpzwQ-WYtpPm8QCOtTT4LB9oA,308
532
+ pythonlings/curriculum/exercises/loops/loops3.py,sha256=nRcJJAN0qnvwFtfTMEq10U5hK5v3KrQFlWIxBkD6whk,250
533
+ pythonlings/curriculum/exercises/loops/loops4.py,sha256=9Gs0l1k6Ux72nDmvF2pzDr8XGwX6I3TY4KtDJKJRe-E,391
534
+ pythonlings/curriculum/exercises/loops/loops5.py,sha256=4twCo7WoTw3H4zQQ43kQp6Q-1GhzwT-8TtvF8fPfMBY,409
535
+ pythonlings/curriculum/exercises/loops/loops6.py,sha256=fyzigF7ic7D9EkE0X2wQktAfBEVdLIhDa4ctseItj_E,294
536
+ pythonlings/curriculum/exercises/loops/loops7.py,sha256=W9u8R8oBS569ixKaJS33iKNqHlmZ5FRWvEOtHTLFSc8,374
537
+ pythonlings/curriculum/exercises/loops/loops8.py,sha256=hM6uECvBYSNfn1bbzTWwiFgBKYtWYlPWwzKFnKIDEnA,358
538
+ pythonlings/curriculum/exercises/loops/loops9.py,sha256=bieRSdJS7sCF-l6tWdqV4q-6zEkg_nJvY4_OgmnwaX0,386
539
+ pythonlings/curriculum/exercises/modules/modules1.py,sha256=75xdr7ux9pwkCl9KlVobqoXBHDrpFQjZzl6art6Uw8U,215
540
+ pythonlings/curriculum/exercises/modules/modules2.py,sha256=qZTXrajPB-w0WemIauCt1oPdLeBN6QEyd2eiK3GIa50,245
541
+ pythonlings/curriculum/exercises/modules/modules3.py,sha256=-aDZRxj4f8FOKTBUq09msuq6wmKPTe1UgT8wYUPW7d8,381
542
+ pythonlings/curriculum/exercises/modules/modules4.py,sha256=e2wKOSlmu9asSXEk-GNIijOciLzLtHGyAGY5YvhAV9k,457
543
+ pythonlings/curriculum/exercises/modules/modules5.py,sha256=7fMsaFF2Wu4UjHPgF7uFdlXPykoHBpFvZWPAykzv3UU,460
544
+ pythonlings/curriculum/exercises/modules/modules6.py,sha256=k4wmpd3dUlIVGVbVwLBMhDFwQmEvaJ_o1PfKBSQkfLk,421
545
+ pythonlings/curriculum/exercises/modules/modules7.py,sha256=QOKn6qp4EJc71ksfp94PBHNmYCSMSlqQ6U3NBGIobvk,473
546
+ pythonlings/curriculum/exercises/modules/modules8.py,sha256=aMhhkn8LmBuR4WvKfY0N9QCQ0MMic066OB0ucyTsE4I,683
547
+ pythonlings/curriculum/exercises/oop_advanced/oop_advanced1.py,sha256=B1h9KKNbuXyngSvyy8d-LBktRMwu-QBvRdZQ_oQDHXg,168
548
+ pythonlings/curriculum/exercises/oop_advanced/oop_advanced10.py,sha256=FnFJI5cbawTrIuBun0NI7jEZZHzK0FbYZJ_QuRf9mXY,326
549
+ pythonlings/curriculum/exercises/oop_advanced/oop_advanced11.py,sha256=hzC_L-VWDxC6Me0JMlceOxvTTOpoxy3VbF2xUzpo7kc,293
550
+ pythonlings/curriculum/exercises/oop_advanced/oop_advanced12.py,sha256=nYMbmlWDlGYKSY_LfVIYqb1NEJkSReZzSiUjChOQD1U,227
551
+ pythonlings/curriculum/exercises/oop_advanced/oop_advanced2.py,sha256=MDiLs1WNYFCxsqWZWz4NW5M57AHGl58hT2wjwIjTe2Y,274
552
+ pythonlings/curriculum/exercises/oop_advanced/oop_advanced3.py,sha256=6w_3SdFEHYiSsM-BCStn-_PebFf-gV6WD2a-uZaFDIo,444
553
+ pythonlings/curriculum/exercises/oop_advanced/oop_advanced4.py,sha256=3B-hyb6Mkc1RcwpmlxkaQBw_OvdlC0Mu3_iTHn0X-A0,229
554
+ pythonlings/curriculum/exercises/oop_advanced/oop_advanced5.py,sha256=cavqewbPcrafKdEMf56PHuLSC2hF2VWaYfSIFekgIw8,205
555
+ pythonlings/curriculum/exercises/oop_advanced/oop_advanced6.py,sha256=cRwzQjDGJyE9EVYfJJP0BTtGmw11vFP-V7Hvxf-jEVY,211
556
+ pythonlings/curriculum/exercises/oop_advanced/oop_advanced7.py,sha256=-tR3pDe4YcobfwG3wpRZRcDfNdudHZ_m5Qodm3mCUz8,323
557
+ pythonlings/curriculum/exercises/oop_advanced/oop_advanced8.py,sha256=jhMkkypTjO6Cg7OnD7ECdhAlFPaEcX3WLU7NaawnrA0,302
558
+ pythonlings/curriculum/exercises/oop_advanced/oop_advanced9.py,sha256=RZEadFww0UhAa_OftV08rkgPlB8EqEjUWYaQ0IjQKRQ,184
559
+ pythonlings/curriculum/exercises/pathlib/pathlib1.py,sha256=NKlc3kxgayydEgEAqzLIAKAHv_7k1pEvC0D1E6zjT1I,145
560
+ pythonlings/curriculum/exercises/pathlib/pathlib2.py,sha256=VbYE-XUo3iDyaOhBeqR3JlyYxv22MWuNgfOEDIXMcAE,155
561
+ pythonlings/curriculum/exercises/pathlib/pathlib3.py,sha256=txTbPtVqO2aLYy4zQzAzDCGqTYmRIW0uH0S0C_Nczbw,184
562
+ pythonlings/curriculum/exercises/pathlib/pathlib4.py,sha256=gHNVunsVMd4j3Br32h6dJTKlnC7Xm2NFCXhbWGcgvSU,201
563
+ pythonlings/curriculum/exercises/pathlib/pathlib5.py,sha256=MupLqKkP3YeInkE7VSU-CWFRd6ZwkOh5e6kZtNsr59k,173
564
+ pythonlings/curriculum/exercises/pathlib/pathlib6.py,sha256=OcByh8bMdg6KL_wszZMne_q0EAjCyyPpz32X68FBeUk,189
565
+ pythonlings/curriculum/exercises/recursion/recursion1.py,sha256=01vsSbuuxJXV8qCsu9cVuyIE2tJQGk4nVR0YJD129xA,313
566
+ pythonlings/curriculum/exercises/recursion/recursion2.py,sha256=UFRHVMkBnJC4LL8vLMQeTveWaHdfvcIgcIYWuGiDmp4,255
567
+ pythonlings/curriculum/exercises/recursion/recursion3.py,sha256=MSqC_u7CIA3JCKnte6cp7OMamL8XlQx5adN7JvtTdJA,342
568
+ pythonlings/curriculum/exercises/recursion/recursion4.py,sha256=f-FoOPkYhKgUN7UXQwxbomPGA2fFzCR7jOy6VK-6hiA,368
569
+ pythonlings/curriculum/exercises/recursion/recursion5.py,sha256=m2kH29glcqkuWLNUA_vf6feo8F43nb7wU11_z-vNWFk,391
570
+ pythonlings/curriculum/exercises/recursion/recursion6.py,sha256=zvzNiUHiAnIhFtGTlTXabFt7HUDBTKg9D_dGizkkhFY,361
571
+ pythonlings/curriculum/exercises/recursion/recursion7.py,sha256=r9WuTIN8lKbLinfiFJOwzT2yBXTDHiFuBzNO3_EJ2x0,647
572
+ pythonlings/curriculum/exercises/recursion/recursion8.py,sha256=7FYLDmKHMKQHcGWfwy77WlETkclHqXtdWNdARuBDhqU,690
573
+ pythonlings/curriculum/exercises/regex/regex1.py,sha256=nOiSRioUcT2qjyCilGHxqy2baqdWpGagrm-Ab_aSgWo,436
574
+ pythonlings/curriculum/exercises/regex/regex10.py,sha256=zkPyEGfsSe7pGaXxkgis7IVimVGpXVNFU2sZ_MhkuTo,984
575
+ pythonlings/curriculum/exercises/regex/regex2.py,sha256=IT7CT-UGoP-AEatuBVKuCqoG8qnzo76j8W6gBNFiCpY,451
576
+ pythonlings/curriculum/exercises/regex/regex3.py,sha256=Z5mEtAk6q16TXqOiovz4GEcfucF6SWA7hDXi7e71Dmg,480
577
+ pythonlings/curriculum/exercises/regex/regex4.py,sha256=45_-uvxs9oTjuEGyRexyljFJTQ5boRLLrOe2q4q82qU,593
578
+ pythonlings/curriculum/exercises/regex/regex5.py,sha256=HcflOwR0rEGe0UHo-jFtPP-AXlN3SkdJiWuTNAcjTnM,571
579
+ pythonlings/curriculum/exercises/regex/regex6.py,sha256=5GJe9CoMDUR0Z6ccyjiOwrXZ3pBmTtLpSqjuRHiict8,628
580
+ pythonlings/curriculum/exercises/regex/regex7.py,sha256=x4ccEnSJeaF5hhkoWppTjp6Fa_ikZG8LJTdTpnB7bLQ,718
581
+ pythonlings/curriculum/exercises/regex/regex8.py,sha256=1_hvstqJFwmquHkrAukwu_faJ-RymRmB7zPVtv3bZWE,540
582
+ pythonlings/curriculum/exercises/regex/regex9.py,sha256=v3Bqh1DeHDVr0yf0pI10bQvirqdbIR3zBmSUijnZzz0,646
583
+ pythonlings/curriculum/exercises/sets/sets1.py,sha256=pFdfJs4c26Sx7zK80dDm5bKTH_pZdnZHbbBg_X63Ha4,121
584
+ pythonlings/curriculum/exercises/sets/sets10.py,sha256=f9j6Z43Q71tWtKy77eFNVI7dvl3bdZpiw-4u3ggouhk,679
585
+ pythonlings/curriculum/exercises/sets/sets2.py,sha256=IBN9WPu4RnfcsxDFv6YSEfZSLmfcitNOBKZcZOcGxiw,307
586
+ pythonlings/curriculum/exercises/sets/sets3.py,sha256=mqa0xdQ1J__RuhfOo7J9hFtUC_RfW6puM9tLFK0O9yo,429
587
+ pythonlings/curriculum/exercises/sets/sets4.py,sha256=szZGIEhtuWyWAS75mFWtZILlBbcAURCyG680DHOYe10,316
588
+ pythonlings/curriculum/exercises/sets/sets5.py,sha256=5D1My-4mDoQMI9kjImyzApr-alMlzzXpuQgKCRUhSM4,313
589
+ pythonlings/curriculum/exercises/sets/sets6.py,sha256=kY4CBWoDzuE6BM25N5Aae_rvqYhLZxVvxSgAo9pd4xQ,314
590
+ pythonlings/curriculum/exercises/sets/sets7.py,sha256=rRmO4B_Rq4np-Ru2pkfAg-W_hk1LYWbNKP4yfxD09ls,440
591
+ pythonlings/curriculum/exercises/sets/sets8.py,sha256=Fmwxyk4CDe6gsCByJFKY24iKOqJEd-57aAO4lf85hKA,438
592
+ pythonlings/curriculum/exercises/sets/sets9.py,sha256=WYsOSdkadfgxgvexXZsBh3amAx76AzWAHUUMJLx2L7I,383
593
+ pythonlings/curriculum/exercises/strings/strings1.py,sha256=dWx0KlTZJosJu7FdjGK_tSuID7I8jcQdg-Yx5BB0Yq4,112
594
+ pythonlings/curriculum/exercises/strings/strings10.py,sha256=m-UdlaboPLhTFI4eJi9UUvRw0S2f8eUYTBaqb522tCs,290
595
+ pythonlings/curriculum/exercises/strings/strings2.py,sha256=0WKYioKUrx5RaL-mNJ9aj6Dl4sBVgxXnmq_7tNXszCA,212
596
+ pythonlings/curriculum/exercises/strings/strings3.py,sha256=KEyL2VrtAo68Xb4SLaIxE4A6U9-30rb6ugmuc-VGCC0,202
597
+ pythonlings/curriculum/exercises/strings/strings4.py,sha256=Kqch-NrU2qzl2CUxmJhKA8KkUdYuS-3bXSPQqaXqWu4,214
598
+ pythonlings/curriculum/exercises/strings/strings5.py,sha256=_ALllwNQ3zDOwavhYDYnG3POWyO03gePb4jr0X9shwk,234
599
+ pythonlings/curriculum/exercises/strings/strings6.py,sha256=tIzgAsUMBsJwfAq5lKEN451aTYfP42xvBkh__nsUHvo,306
600
+ pythonlings/curriculum/exercises/strings/strings7.py,sha256=Zt2043WMf8W2culLJZliSfxHGR8l3uVm2og2FrgNXDs,290
601
+ pythonlings/curriculum/exercises/strings/strings8.py,sha256=BaLOaAPj_GbVJz0Mv2g_7wTiQ2lcmR58EDDEXC1RC10,227
602
+ pythonlings/curriculum/exercises/strings/strings9.py,sha256=Pk_UVP7rP_xl6BLqDy_Anxg7P9sbk3gaJPvLZlg4UoE,311
603
+ pythonlings/curriculum/exercises/testing/testing1.py,sha256=blF6NfUJS1AHd4O0lYu_ToLxc3BvHmhb3DNIiTkRUKk,378
604
+ pythonlings/curriculum/exercises/testing/testing10.py,sha256=7a4PjmQdPct23YmO6tweUQeyuYUbjT4XTNNE4KLpbD8,675
605
+ pythonlings/curriculum/exercises/testing/testing11.py,sha256=ak6jEzs4V_RcxJ0Bb9tHt3DTrnkLwE1DkUXK2kzaTTs,667
606
+ pythonlings/curriculum/exercises/testing/testing12.py,sha256=CEUHTjOG6gi1n6yBThLj--Juc0C32eIdhqqpPAT5bWM,1294
607
+ pythonlings/curriculum/exercises/testing/testing2.py,sha256=j0PD5aFNR6iydvq5heKqcACDEItVjhPaUPnSy_LvrRY,377
608
+ pythonlings/curriculum/exercises/testing/testing3.py,sha256=JtlTkl8owcgxxGsu4uv6dxRi8PsrKkUDc35sLrAsIvI,422
609
+ pythonlings/curriculum/exercises/testing/testing4.py,sha256=VVEHtrdj3W8lKCHBtBRTL2AjGkZufgRKS4w7LI24pMM,426
610
+ pythonlings/curriculum/exercises/testing/testing5.py,sha256=64LS1XZEsQ15tRLTJS2P8SCT3e4BmNYwaF5YWZqZVzs,552
611
+ pythonlings/curriculum/exercises/testing/testing6.py,sha256=14KHauu1nru6BiFKYaFx3TaMUo_QLMez-yPYhrQKejE,750
612
+ pythonlings/curriculum/exercises/testing/testing7.py,sha256=kX6U7n90vbUkBg03zpXPKY6K_1Q3NlJoklLaYAMKtPA,760
613
+ pythonlings/curriculum/exercises/testing/testing8.py,sha256=oemlGMF0osw6Vyz9y6qWrpYW5y3idPFn8U1OsZWWcZE,1001
614
+ pythonlings/curriculum/exercises/testing/testing9.py,sha256=hy_kT6PVICJW9-YGE1-2R6VCkb0MiLit9G_-TADoxMw,787
615
+ pythonlings/curriculum/exercises/tuples/tuples1.py,sha256=nDOzjaTtllR0eGGHuMuFbg_9zZHqRcEqAatZ5oN-LXk,138
616
+ pythonlings/curriculum/exercises/tuples/tuples10.py,sha256=Bicm8l1o1m_kB7GJ7w8MSNIwBJXUoRoVfu0gwBICGkw,642
617
+ pythonlings/curriculum/exercises/tuples/tuples2.py,sha256=fCi2XpyZTX4NCj9zhb-r0XEc_coyjhdKowe_r5a4Pjc,250
618
+ pythonlings/curriculum/exercises/tuples/tuples3.py,sha256=6zmjd0AZLAsK7lBIj1ibKnHttzMQu1_r6pzxfc8hYQY,218
619
+ pythonlings/curriculum/exercises/tuples/tuples4.py,sha256=G5rtKCbcZjE9KOLVgZW3QBkxaKddzM0JPBVB8RQKeTA,225
620
+ pythonlings/curriculum/exercises/tuples/tuples5.py,sha256=-JsSbJPXeZDh6sU6yxZmR81848xubiKnkA1GfqjsjBU,379
621
+ pythonlings/curriculum/exercises/tuples/tuples6.py,sha256=4vCfA2Acf0tmfLoTeFB0XmFyiAXo5DS-q6zNyOwRYZo,398
622
+ pythonlings/curriculum/exercises/tuples/tuples7.py,sha256=TKTeEbc_ByAuv2K1BLD7iv_RVhQDT_5ueELvweA5q8w,295
623
+ pythonlings/curriculum/exercises/tuples/tuples8.py,sha256=G7cBBqi9Vz4Zigghil8C5vFVn7e3CHkW5JRD252vQXA,328
624
+ pythonlings/curriculum/exercises/tuples/tuples9.py,sha256=YgXcoRplXE1Lwvl63SLQmFmSN1XyvI_QWpxxAYUMraI,399
625
+ pythonlings/curriculum/exercises/type_hints/type_hints1.py,sha256=uY3ZddRIbhREQoyaJMoMNKEAS92gQQQZn60ooASWN9k,253
626
+ pythonlings/curriculum/exercises/type_hints/type_hints2.py,sha256=ZtFX7FKIDfFn9d6kdUCT7KPc1uhUoeruZx3rVYlKC74,352
627
+ pythonlings/curriculum/exercises/type_hints/type_hints3.py,sha256=UgDl-iSbQ3CTK_O5Ihc4Re99IZwG2oGUsoRhKOIPShQ,457
628
+ pythonlings/curriculum/exercises/type_hints/type_hints4.py,sha256=k_Ooa3Ojw3gok8HR69xfqVZ9Iu0RMlZwUScDKo9DQg8,706
629
+ pythonlings/curriculum/exercises/type_hints/type_hints5.py,sha256=OMUW1nl7knc2SkM4C3tqr5S-0WOZMiI31PbkMtN28eQ,577
630
+ pythonlings/curriculum/exercises/type_hints/type_hints6.py,sha256=8YVn26t5uDS2s5YZPx2X9SxJ7O-5VucaNC8kmiXZcRg,435
631
+ pythonlings/curriculum/exercises/type_hints/type_hints7.py,sha256=Wxbegb4esH6-u6NK-gNP2avCYssu-p6c8XCk0VJbMbI,568
632
+ pythonlings/curriculum/exercises/type_hints/type_hints8.py,sha256=NojThlY4mQ59fYckgimpnOafjo81PnDPYZgka93dBis,853
633
+ pythonlings/curriculum/exercises/variables/variables1.py,sha256=70MTaekygfP0Zs_tuyVzxDtu7FfSItICb53gYLc79Gw,195
634
+ pythonlings/curriculum/exercises/variables/variables10.py,sha256=bdl6ab9z1DycM2YEfvpNzlCLGK444-jimiFpWQQZXVQ,387
635
+ pythonlings/curriculum/exercises/variables/variables2.py,sha256=e38mZFWQgQwm6GMi_98RbE_fxwYyelQVfTvKxj2E23E,228
636
+ pythonlings/curriculum/exercises/variables/variables3.py,sha256=Q6rBkzSOMAAfal92OYkUz9sy9VT-n5AUgft_jy0WuDY,220
637
+ pythonlings/curriculum/exercises/variables/variables4.py,sha256=3HbWoEiLumj1pZsYotGhXU9quy9YXqxzlKPJQoNmDCQ,273
638
+ pythonlings/curriculum/exercises/variables/variables5.py,sha256=v7EaQUpolY49QtjkbnitUlk8cDdIv0DeM3sBVGcbqdc,305
639
+ pythonlings/curriculum/exercises/variables/variables6.py,sha256=YktO7leAuqbE5ftZL8o2HhX5UnYzFfGhHQwWfNCLzmQ,241
640
+ pythonlings/curriculum/exercises/variables/variables7.py,sha256=kGviV4xVdCgpPnxw3ZeDKKXJ0UOkx13wTc_DrMGVEYg,218
641
+ pythonlings/curriculum/exercises/variables/variables8.py,sha256=YIdsfqsb2ECm4-QIcqlb19tK-hpwVdYJcdkPoycATyU,394
642
+ pythonlings/curriculum/exercises/variables/variables9.py,sha256=6ImsYkHyXxoF-zS13NwYx71Ku-qJC6hiJMs6P7dAgOw,292
643
+ pythonlings/curriculum/info.toml,sha256=zaLu76rLVA4N7b92cmOmcWzGMVUOnO0Q4AxtsQcl0PQ,69025
644
+ pythonlings/curriculum/solutions/.keep,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
645
+ pythonlings/curriculum/solutions/_answers.py,sha256=WjwaQXLz51ZFpiDXXw-I33kuObBsTruJ0J_JElipbdQ,74100
646
+ pythonlings/curriculum/solutions/async1.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
647
+ pythonlings/curriculum/solutions/async10.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
648
+ pythonlings/curriculum/solutions/async2.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
649
+ pythonlings/curriculum/solutions/async3.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
650
+ pythonlings/curriculum/solutions/async4.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
651
+ pythonlings/curriculum/solutions/async5.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
652
+ pythonlings/curriculum/solutions/async6.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
653
+ pythonlings/curriculum/solutions/async7.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
654
+ pythonlings/curriculum/solutions/async8.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
655
+ pythonlings/curriculum/solutions/async9.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
656
+ pythonlings/curriculum/solutions/classes1.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
657
+ pythonlings/curriculum/solutions/classes10.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
658
+ pythonlings/curriculum/solutions/classes11.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
659
+ pythonlings/curriculum/solutions/classes12.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
660
+ pythonlings/curriculum/solutions/classes2.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
661
+ pythonlings/curriculum/solutions/classes3.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
662
+ pythonlings/curriculum/solutions/classes4.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
663
+ pythonlings/curriculum/solutions/classes5.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
664
+ pythonlings/curriculum/solutions/classes6.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
665
+ pythonlings/curriculum/solutions/classes7.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
666
+ pythonlings/curriculum/solutions/classes8.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
667
+ pythonlings/curriculum/solutions/classes9.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
668
+ pythonlings/curriculum/solutions/collections1.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
669
+ pythonlings/curriculum/solutions/collections10.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
670
+ pythonlings/curriculum/solutions/collections2.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
671
+ pythonlings/curriculum/solutions/collections3.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
672
+ pythonlings/curriculum/solutions/collections4.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
673
+ pythonlings/curriculum/solutions/collections5.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
674
+ pythonlings/curriculum/solutions/collections6.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
675
+ pythonlings/curriculum/solutions/collections7.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
676
+ pythonlings/curriculum/solutions/collections8.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
677
+ pythonlings/curriculum/solutions/collections9.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
678
+ pythonlings/curriculum/solutions/comprehensions1.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
679
+ pythonlings/curriculum/solutions/comprehensions10.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
680
+ pythonlings/curriculum/solutions/comprehensions2.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
681
+ pythonlings/curriculum/solutions/comprehensions3.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
682
+ pythonlings/curriculum/solutions/comprehensions4.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
683
+ pythonlings/curriculum/solutions/comprehensions5.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
684
+ pythonlings/curriculum/solutions/comprehensions6.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
685
+ pythonlings/curriculum/solutions/comprehensions7.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
686
+ pythonlings/curriculum/solutions/comprehensions8.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
687
+ pythonlings/curriculum/solutions/comprehensions9.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
688
+ pythonlings/curriculum/solutions/conditionals1.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
689
+ pythonlings/curriculum/solutions/conditionals10.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
690
+ pythonlings/curriculum/solutions/conditionals2.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
691
+ pythonlings/curriculum/solutions/conditionals3.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
692
+ pythonlings/curriculum/solutions/conditionals4.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
693
+ pythonlings/curriculum/solutions/conditionals5.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
694
+ pythonlings/curriculum/solutions/conditionals6.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
695
+ pythonlings/curriculum/solutions/conditionals7.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
696
+ pythonlings/curriculum/solutions/conditionals8.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
697
+ pythonlings/curriculum/solutions/conditionals9.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
698
+ pythonlings/curriculum/solutions/context_managers1.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
699
+ pythonlings/curriculum/solutions/context_managers2.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
700
+ pythonlings/curriculum/solutions/context_managers3.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
701
+ pythonlings/curriculum/solutions/context_managers4.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
702
+ pythonlings/curriculum/solutions/context_managers5.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
703
+ pythonlings/curriculum/solutions/context_managers6.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
704
+ pythonlings/curriculum/solutions/context_managers7.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
705
+ pythonlings/curriculum/solutions/context_managers8.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
706
+ pythonlings/curriculum/solutions/dataclasses1.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
707
+ pythonlings/curriculum/solutions/dataclasses2.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
708
+ pythonlings/curriculum/solutions/dataclasses3.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
709
+ pythonlings/curriculum/solutions/dataclasses4.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
710
+ pythonlings/curriculum/solutions/dataclasses5.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
711
+ pythonlings/curriculum/solutions/dataclasses6.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
712
+ pythonlings/curriculum/solutions/dataclasses7.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
713
+ pythonlings/curriculum/solutions/dataclasses8.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
714
+ pythonlings/curriculum/solutions/datetime1.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
715
+ pythonlings/curriculum/solutions/datetime2.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
716
+ pythonlings/curriculum/solutions/datetime3.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
717
+ pythonlings/curriculum/solutions/datetime4.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
718
+ pythonlings/curriculum/solutions/datetime5.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
719
+ pythonlings/curriculum/solutions/datetime6.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
720
+ pythonlings/curriculum/solutions/datetime7.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
721
+ pythonlings/curriculum/solutions/datetime8.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
722
+ pythonlings/curriculum/solutions/decorators1.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
723
+ pythonlings/curriculum/solutions/decorators10.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
724
+ pythonlings/curriculum/solutions/decorators2.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
725
+ pythonlings/curriculum/solutions/decorators3.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
726
+ pythonlings/curriculum/solutions/decorators4.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
727
+ pythonlings/curriculum/solutions/decorators5.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
728
+ pythonlings/curriculum/solutions/decorators6.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
729
+ pythonlings/curriculum/solutions/decorators7.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
730
+ pythonlings/curriculum/solutions/decorators8.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
731
+ pythonlings/curriculum/solutions/decorators9.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
732
+ pythonlings/curriculum/solutions/dictionaries1.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
733
+ pythonlings/curriculum/solutions/dictionaries10.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
734
+ pythonlings/curriculum/solutions/dictionaries2.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
735
+ pythonlings/curriculum/solutions/dictionaries3.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
736
+ pythonlings/curriculum/solutions/dictionaries4.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
737
+ pythonlings/curriculum/solutions/dictionaries5.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
738
+ pythonlings/curriculum/solutions/dictionaries6.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
739
+ pythonlings/curriculum/solutions/dictionaries7.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
740
+ pythonlings/curriculum/solutions/dictionaries8.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
741
+ pythonlings/curriculum/solutions/dictionaries9.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
742
+ pythonlings/curriculum/solutions/enums1.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
743
+ pythonlings/curriculum/solutions/enums2.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
744
+ pythonlings/curriculum/solutions/enums3.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
745
+ pythonlings/curriculum/solutions/enums4.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
746
+ pythonlings/curriculum/solutions/enums5.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
747
+ pythonlings/curriculum/solutions/enums6.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
748
+ pythonlings/curriculum/solutions/exceptions1.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
749
+ pythonlings/curriculum/solutions/exceptions10.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
750
+ pythonlings/curriculum/solutions/exceptions2.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
751
+ pythonlings/curriculum/solutions/exceptions3.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
752
+ pythonlings/curriculum/solutions/exceptions4.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
753
+ pythonlings/curriculum/solutions/exceptions5.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
754
+ pythonlings/curriculum/solutions/exceptions6.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
755
+ pythonlings/curriculum/solutions/exceptions7.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
756
+ pythonlings/curriculum/solutions/exceptions8.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
757
+ pythonlings/curriculum/solutions/exceptions9.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
758
+ pythonlings/curriculum/solutions/file_io1.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
759
+ pythonlings/curriculum/solutions/file_io10.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
760
+ pythonlings/curriculum/solutions/file_io2.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
761
+ pythonlings/curriculum/solutions/file_io3.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
762
+ pythonlings/curriculum/solutions/file_io4.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
763
+ pythonlings/curriculum/solutions/file_io5.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
764
+ pythonlings/curriculum/solutions/file_io6.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
765
+ pythonlings/curriculum/solutions/file_io7.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
766
+ pythonlings/curriculum/solutions/file_io8.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
767
+ pythonlings/curriculum/solutions/file_io9.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
768
+ pythonlings/curriculum/solutions/functional1.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
769
+ pythonlings/curriculum/solutions/functional10.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
770
+ pythonlings/curriculum/solutions/functional2.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
771
+ pythonlings/curriculum/solutions/functional3.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
772
+ pythonlings/curriculum/solutions/functional4.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
773
+ pythonlings/curriculum/solutions/functional5.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
774
+ pythonlings/curriculum/solutions/functional6.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
775
+ pythonlings/curriculum/solutions/functional7.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
776
+ pythonlings/curriculum/solutions/functional8.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
777
+ pythonlings/curriculum/solutions/functional9.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
778
+ pythonlings/curriculum/solutions/functions1.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
779
+ pythonlings/curriculum/solutions/functions10.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
780
+ pythonlings/curriculum/solutions/functions2.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
781
+ pythonlings/curriculum/solutions/functions3.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
782
+ pythonlings/curriculum/solutions/functions4.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
783
+ pythonlings/curriculum/solutions/functions5.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
784
+ pythonlings/curriculum/solutions/functions6.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
785
+ pythonlings/curriculum/solutions/functions7.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
786
+ pythonlings/curriculum/solutions/functions8.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
787
+ pythonlings/curriculum/solutions/functions9.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
788
+ pythonlings/curriculum/solutions/generators1.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
789
+ pythonlings/curriculum/solutions/generators10.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
790
+ pythonlings/curriculum/solutions/generators2.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
791
+ pythonlings/curriculum/solutions/generators3.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
792
+ pythonlings/curriculum/solutions/generators4.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
793
+ pythonlings/curriculum/solutions/generators5.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
794
+ pythonlings/curriculum/solutions/generators6.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
795
+ pythonlings/curriculum/solutions/generators7.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
796
+ pythonlings/curriculum/solutions/generators8.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
797
+ pythonlings/curriculum/solutions/generators9.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
798
+ pythonlings/curriculum/solutions/itertools1.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
799
+ pythonlings/curriculum/solutions/itertools2.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
800
+ pythonlings/curriculum/solutions/itertools3.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
801
+ pythonlings/curriculum/solutions/itertools4.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
802
+ pythonlings/curriculum/solutions/itertools5.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
803
+ pythonlings/curriculum/solutions/itertools6.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
804
+ pythonlings/curriculum/solutions/itertools7.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
805
+ pythonlings/curriculum/solutions/itertools8.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
806
+ pythonlings/curriculum/solutions/json1.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
807
+ pythonlings/curriculum/solutions/json2.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
808
+ pythonlings/curriculum/solutions/json3.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
809
+ pythonlings/curriculum/solutions/json4.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
810
+ pythonlings/curriculum/solutions/json5.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
811
+ pythonlings/curriculum/solutions/json6.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
812
+ pythonlings/curriculum/solutions/json7.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
813
+ pythonlings/curriculum/solutions/json8.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
814
+ pythonlings/curriculum/solutions/lists1.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
815
+ pythonlings/curriculum/solutions/lists10.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
816
+ pythonlings/curriculum/solutions/lists2.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
817
+ pythonlings/curriculum/solutions/lists3.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
818
+ pythonlings/curriculum/solutions/lists4.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
819
+ pythonlings/curriculum/solutions/lists5.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
820
+ pythonlings/curriculum/solutions/lists6.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
821
+ pythonlings/curriculum/solutions/lists7.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
822
+ pythonlings/curriculum/solutions/lists8.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
823
+ pythonlings/curriculum/solutions/lists9.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
824
+ pythonlings/curriculum/solutions/loops1.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
825
+ pythonlings/curriculum/solutions/loops10.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
826
+ pythonlings/curriculum/solutions/loops2.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
827
+ pythonlings/curriculum/solutions/loops3.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
828
+ pythonlings/curriculum/solutions/loops4.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
829
+ pythonlings/curriculum/solutions/loops5.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
830
+ pythonlings/curriculum/solutions/loops6.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
831
+ pythonlings/curriculum/solutions/loops7.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
832
+ pythonlings/curriculum/solutions/loops8.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
833
+ pythonlings/curriculum/solutions/loops9.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
834
+ pythonlings/curriculum/solutions/modules1.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
835
+ pythonlings/curriculum/solutions/modules2.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
836
+ pythonlings/curriculum/solutions/modules3.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
837
+ pythonlings/curriculum/solutions/modules4.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
838
+ pythonlings/curriculum/solutions/modules5.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
839
+ pythonlings/curriculum/solutions/modules6.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
840
+ pythonlings/curriculum/solutions/modules7.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
841
+ pythonlings/curriculum/solutions/modules8.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
842
+ pythonlings/curriculum/solutions/oop_advanced1.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
843
+ pythonlings/curriculum/solutions/oop_advanced10.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
844
+ pythonlings/curriculum/solutions/oop_advanced11.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
845
+ pythonlings/curriculum/solutions/oop_advanced12.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
846
+ pythonlings/curriculum/solutions/oop_advanced2.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
847
+ pythonlings/curriculum/solutions/oop_advanced3.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
848
+ pythonlings/curriculum/solutions/oop_advanced4.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
849
+ pythonlings/curriculum/solutions/oop_advanced5.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
850
+ pythonlings/curriculum/solutions/oop_advanced6.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
851
+ pythonlings/curriculum/solutions/oop_advanced7.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
852
+ pythonlings/curriculum/solutions/oop_advanced8.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
853
+ pythonlings/curriculum/solutions/oop_advanced9.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
854
+ pythonlings/curriculum/solutions/pathlib1.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
855
+ pythonlings/curriculum/solutions/pathlib2.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
856
+ pythonlings/curriculum/solutions/pathlib3.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
857
+ pythonlings/curriculum/solutions/pathlib4.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
858
+ pythonlings/curriculum/solutions/pathlib5.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
859
+ pythonlings/curriculum/solutions/pathlib6.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
860
+ pythonlings/curriculum/solutions/recursion1.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
861
+ pythonlings/curriculum/solutions/recursion2.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
862
+ pythonlings/curriculum/solutions/recursion3.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
863
+ pythonlings/curriculum/solutions/recursion4.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
864
+ pythonlings/curriculum/solutions/recursion5.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
865
+ pythonlings/curriculum/solutions/recursion6.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
866
+ pythonlings/curriculum/solutions/recursion7.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
867
+ pythonlings/curriculum/solutions/recursion8.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
868
+ pythonlings/curriculum/solutions/regex1.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
869
+ pythonlings/curriculum/solutions/regex10.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
870
+ pythonlings/curriculum/solutions/regex2.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
871
+ pythonlings/curriculum/solutions/regex3.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
872
+ pythonlings/curriculum/solutions/regex4.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
873
+ pythonlings/curriculum/solutions/regex5.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
874
+ pythonlings/curriculum/solutions/regex6.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
875
+ pythonlings/curriculum/solutions/regex7.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
876
+ pythonlings/curriculum/solutions/regex8.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
877
+ pythonlings/curriculum/solutions/regex9.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
878
+ pythonlings/curriculum/solutions/sets1.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
879
+ pythonlings/curriculum/solutions/sets10.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
880
+ pythonlings/curriculum/solutions/sets2.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
881
+ pythonlings/curriculum/solutions/sets3.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
882
+ pythonlings/curriculum/solutions/sets4.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
883
+ pythonlings/curriculum/solutions/sets5.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
884
+ pythonlings/curriculum/solutions/sets6.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
885
+ pythonlings/curriculum/solutions/sets7.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
886
+ pythonlings/curriculum/solutions/sets8.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
887
+ pythonlings/curriculum/solutions/sets9.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
888
+ pythonlings/curriculum/solutions/strings1.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
889
+ pythonlings/curriculum/solutions/strings10.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
890
+ pythonlings/curriculum/solutions/strings2.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
891
+ pythonlings/curriculum/solutions/strings3.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
892
+ pythonlings/curriculum/solutions/strings4.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
893
+ pythonlings/curriculum/solutions/strings5.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
894
+ pythonlings/curriculum/solutions/strings6.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
895
+ pythonlings/curriculum/solutions/strings7.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
896
+ pythonlings/curriculum/solutions/strings8.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
897
+ pythonlings/curriculum/solutions/strings9.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
898
+ pythonlings/curriculum/solutions/testing1.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
899
+ pythonlings/curriculum/solutions/testing10.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
900
+ pythonlings/curriculum/solutions/testing11.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
901
+ pythonlings/curriculum/solutions/testing12.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
902
+ pythonlings/curriculum/solutions/testing2.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
903
+ pythonlings/curriculum/solutions/testing3.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
904
+ pythonlings/curriculum/solutions/testing4.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
905
+ pythonlings/curriculum/solutions/testing5.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
906
+ pythonlings/curriculum/solutions/testing6.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
907
+ pythonlings/curriculum/solutions/testing7.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
908
+ pythonlings/curriculum/solutions/testing8.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
909
+ pythonlings/curriculum/solutions/testing9.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
910
+ pythonlings/curriculum/solutions/tuples1.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
911
+ pythonlings/curriculum/solutions/tuples10.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
912
+ pythonlings/curriculum/solutions/tuples2.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
913
+ pythonlings/curriculum/solutions/tuples3.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
914
+ pythonlings/curriculum/solutions/tuples4.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
915
+ pythonlings/curriculum/solutions/tuples5.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
916
+ pythonlings/curriculum/solutions/tuples6.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
917
+ pythonlings/curriculum/solutions/tuples7.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
918
+ pythonlings/curriculum/solutions/tuples8.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
919
+ pythonlings/curriculum/solutions/tuples9.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
920
+ pythonlings/curriculum/solutions/type_hints1.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
921
+ pythonlings/curriculum/solutions/type_hints2.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
922
+ pythonlings/curriculum/solutions/type_hints3.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
923
+ pythonlings/curriculum/solutions/type_hints4.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
924
+ pythonlings/curriculum/solutions/type_hints5.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
925
+ pythonlings/curriculum/solutions/type_hints6.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
926
+ pythonlings/curriculum/solutions/type_hints7.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
927
+ pythonlings/curriculum/solutions/type_hints8.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
928
+ pythonlings/curriculum/solutions/variables1.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
929
+ pythonlings/curriculum/solutions/variables10.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
930
+ pythonlings/curriculum/solutions/variables2.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
931
+ pythonlings/curriculum/solutions/variables3.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
932
+ pythonlings/curriculum/solutions/variables4.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
933
+ pythonlings/curriculum/solutions/variables5.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
934
+ pythonlings/curriculum/solutions/variables6.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
935
+ pythonlings/curriculum/solutions/variables7.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
936
+ pythonlings/curriculum/solutions/variables8.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
937
+ pythonlings/curriculum/solutions/variables9.py,sha256=7UIUOJNTTWft93V4pDFNZlriymc-fjEhdWotp8wxIWo,64
938
+ pythonlings-0.3.0.dist-info/METADATA,sha256=K7lJWJl4knMSDj4A4GhPLYMkqU4VWHHy_srQGhQuLus,9542
939
+ pythonlings-0.3.0.dist-info/WHEEL,sha256=mffPy8wBnZQn2VnJUU5jE99KsxaSfiyMHV9Yt0aLVxs,87
940
+ pythonlings-0.3.0.dist-info/entry_points.txt,sha256=x3HLcXJL_k5cqbwij4PL_Rr-q_BsBbm2ofJHMpeFbr8,53
941
+ pythonlings-0.3.0.dist-info/licenses/LICENSE,sha256=FV2UAm_ETO065zJVIcDAWp2kWCShPts33fXrNASIMXs,1069
942
+ pythonlings-0.3.0.dist-info/RECORD,,