15-112 Agenda 14-June
- My office hours 12PM-3PM today!
- Today’s content not on quiz, but on weekend homework
- Quiz
- bigOH SA
- Recursion CT
- Dict/Sets FR
- Backtracking FR
- Content
- Memoization: fib
- Expanding the stack size
- File recursion
- Fractals
- If time permits:
- Another backtracking problem: nQueens
- mergesort recursively
- permutations or powerset
- hanoi
- Attendance Check: https://tinyurl.com/summer112att15
- Cool Coding Thing of the Day
from bottle import route, run
@route('/hello/<name>')
def index(name):
return "Hello %s!" % name
run(host='localhost', port=8080)