Created
May 9, 2022 15:10
-
-
Save aldy120/3a2cc22758c7e3c45e1a8fb6001f0b72 to your computer and use it in GitHub Desktop.
fibo layer example.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import json | |
| import fibo | |
| def lambda_handler(event, context): | |
| fibo.fib2(1000) | |
| return { | |
| 'statusCode': 200, | |
| 'body': json.dumps('Hello from fibo 1000: ' + ' '.join([str(elem) for elem in fibo.fib2(100)]) ) | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment