Problem 434. Return the Fibonacci Sequence

Created by Matt Fig

Write a code which returns the Fibonacci Sequence such that the largest value in the sequence is less than the input integer N. For example,

>> fib_seq(34)
ans =
       1  1  2  3  5  8  13  21
>> fib_seq(35)
ans =
       1  1  2  3  5  8  13  21  34

Tags

Problem Group

45 solvers submitted 94 solutions (2.09 solutions/solver).

Problem Comments