You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: assignment_2/akshit/README.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
## Problem Statement:
2
2
3
-
Train a model to print the first n elements of the Fibonacci sequence starting at integers a and b. Note that a < b, and n <= 100 are user supplied arguments. You may not use the standard summing operation to print the next element.Example I/O: Input: a=5, b=7, n=5 Output: 5, 7, 12, 19, 31 Input: a=7, b=41, n=6 Output: 7, 41, 49, 90, 139, 229
3
+
Train a model to print the first n elements of the Fibonacci sequence starting at integers a and b. Note that a < b, and n <= 100 are user supplied arguments. You may not use the standard summing operation to print the next element.Example I/O: Input: a=5, b=7, n=5 Output: 5, 7, 12, 19, 31 Input: a=7, b=41, n=6 Output: 7, 41, 48, 89, 137, 226
0 commit comments