summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAdam Bard <github@adambard.com>2016-03-30 13:04:32 -0700
committerAdam Bard <github@adambard.com>2016-03-30 13:04:32 -0700
commitf75cb997b0135a2ab8341c2043dfc0b78d3f2535 (patch)
tree9209baaf4570664259cb9690a4c50923557da959
parenta7bbee6aa02be67f1844bce6817892d91b9422ab (diff)
Update python3.html.markdown
Remove TODO
-rw-r--r--python3.html.markdown1
1 files changed, 0 insertions, 1 deletions
diff --git a/python3.html.markdown b/python3.html.markdown
index c2454076..2e37fccb 100644
--- a/python3.html.markdown
+++ b/python3.html.markdown
@@ -587,7 +587,6 @@ add_10(3) # => 13
(lambda x: x > 2)(3) # => True
(lambda x, y: x ** 2 + y ** 2)(2, 1) # => 5
-# TODO - Fix for iterables
# There are built-in higher order functions
list(map(add_10, [1, 2, 3])) # => [11, 12, 13]
list(map(max, [1, 2, 3], [4, 2, 1])) # => [4, 2, 3]