We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef00553 commit d5fee61Copy full SHA for d5fee61
Day 5/9.py
@@ -0,0 +1,4 @@
1
+high_ord_func = lambda x, func: x + func(x)
2
+
3
+print(high_ord_func(2, lambda x: x * x))
4
+print(high_ord_func(2, lambda x: x + 3))
0 commit comments