Every positive integer has a unique decomposition into nonconsecutive Fibonacci numbers f1+f2+ ... Given a positive integer n, return these numbers.
Return the vector f = [f1, f2, ...] sorted from smallest to largest. sum(f) = n.
Examples
n = 3 f = 3
n = 32 f = [3 8 21]
Reference: http://www.johndcook.com/blog/2015/05/17/fibonacci-number-system/
Find all elements less than 0 or greater than 10 and replace them with NaN
11614 Solvers
152 Solvers
Given a window, how many subsets of a vector sum positive
673 Solvers
Implement simple rotation cypher
805 Solvers
239 Solvers