nov 17
We talked about recursion, and the material in
the algorithms chapter.
I showed the Turtle() object in turtle.py,
and used it to draw a fractal snowflake 'Koch curve'.
In class we wrote a 'recursive counting' example,
and saw that it hit a recursion limit at 1000.
See the 'in_class.py' attachment.
And we also wrote a recursive procedure to solve
the towers of hanoi puzzle, and noticed that
the pattern of output looks like binary counting.
Again, see tha attachment.