Files
grokking_algorithms/errata.markdown
Aditya Bhargava cbac1989d6 errata
2016-07-18 11:51:55 -07:00

13 lines
232 B
Markdown

Page 41 [Image]:
if i <= 1
WE ARE DONE
Code sample is `i <= 0`. Should match?
Page 43 [Snippet 2]:
def greet2(name):
...
def bye():
print "ok bye!"
`def bye()` should be aligned with `def greet2(name)` not nested?