You are viewing a single comment's thread. Return to all comments →
Here's my code:
cube = lambda x: x**3 def fibonacci(n): res = [0, 1] for i in range(2, n): res.append(res[i - 1] + res[i - 2]) return res[:n]
Seems like cookies are disabled on this browser, please enable them to open this website
Map and Lambda Function
You are viewing a single comment's thread. Return to all comments →
Here's my code: