Skip to content

Commit d5fee61

Browse files
Initial commit
1 parent ef00553 commit d5fee61

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Day 5/9.py

+4
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)