My work for Hoon 101. Will remain private until the class is over.
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

pirms 4 gadiem
pirms 4 gadiem
pirms 4 gadiem
pirms 4 gadiem
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. # Hoon 101
  2. My assignments for each week of Hoon 101.
  3. ## Week 1
  4. > Create a naked generator that takes an atom and returns the same atom cast to any aura
  5. ## Week 2
  6. > Build a naked generator that takes a noun and checks if that noun is a cell or an atom. If that input noun is an atom, check if it’s even or odd. The output should be of the tape type.
  7. ## Week 3
  8. > Build a naked generator that returns the third item of a list, without using standard library functions (in the core logic, could use (list) as the input)
  9. ## Week 4
  10. > Find the sum of all numbers that are a multiple of 3 or 5, [1..n]
  11. ## Week 5
  12. > morse code converter
  13. ## Week 6
  14. > Produce x hands of y cards from a deck of 52 distinct cards
  15. # Hoon 201
  16. ## Week 1
  17. deal two poker hands and rank them
  18. ## Week 2
  19. Depth first search a tree
  20. ## Week 3
  21. Write +turn without stdlib
  22. ## Week 4
  23. Rewrite Egg-Timer (Gall App) to take an absolute date
  24. ## Week 5
  25. Write a Gall App that queries an api
  26. ## Week 6
  27. Write a test suite for a library
  28. ## Week 7
  29. Write a Modulo Tile for a simple Todo List
  30. ## Week 8
  31. Create something hopefully impressive