about | help | code help+videos | done | prefs |
A fibonacci sequence is one starting with the numbers 0 and 1, and every following number being the sum of the previous two terms. Thus, the fibonacci sequence is 0, 1, 1, 2, 3, 5, 8 ... Define a function that when passed an integer, returns true if it exists in the fibonacci sequence, false otherwise. inFibonacciSequence(0) → true inFibonacciSequence(1) → true inFibonacciSequence(54) → false ...Save, Compile, Run (ctrl-enter) |
Progress graphs:
Your progress graph for this problem
Random user progress graph for this problem
Random Epic Progress Graph
Difficulty: 2 Post-solution available
Copyright Nick Parlante 2017 - privacy