38 lines
812 B
Markdown
38 lines
812 B
Markdown
# Hoon 101
|
||
|
||
My assignments for each week of Hoon 101.
|
||
|
||
## Week 1
|
||
|
||
> Create a naked generator that takes an atom and returns the same atom cast to any aura
|
||
|
||
## Week 2
|
||
|
||
> 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.
|
||
|
||
## Week 3
|
||
|
||
> 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)
|
||
|
||
## Week 4
|
||
|
||
> Find the sum of all numbers that are a multiple of 3 or 5, [1..n]
|
||
|
||
## Week 5
|
||
|
||
> morse code converter
|
||
|
||
## Week 6
|
||
|
||
> Produce x hands of y cards from a deck of 52 distinct cards
|
||
|
||
# Hoon 201
|
||
|
||
## Week 1
|
||
|
||
deal two poker hands and rank them
|
||
|
||
## Week 2
|
||
|
||
Depth first search a tree
|