Skip to content

Commit 9df8534

Browse files
Update README.md
1 parent 420522e commit 9df8534

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

assignment_2/akshit/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## Problem Statement:
22

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
44

55
## Approach:
66

0 commit comments

Comments
 (0)