7 kyu
Reverse fibonacci series
Description:
Write a function to generate 'n' number of fibonacci series (0,1,1,2,3...) in reverse order . The output should be a string of fibonacci series in the reverse order upto the given number.
Example
reverseFibo(3) // => '110'
reverseFibo(10) // => '3421138532110'
Fundamentals
Similar Kata:
Stats:
Created | Mar 23, 2015 |
Published | Mar 23, 2015 |
Warriors Trained | 628 |
Total Skips | 7 |
Total Code Submissions | 1722 |
Total Times Completed | 389 |
JavaScript Completions | 389 |
Total Stars | 4 |
% of votes with a positive feedback rating | 88% of 156 |
Total "Very Satisfied" Votes | 127 |
Total "Somewhat Satisfied" Votes | 22 |
Total "Not Satisfied" Votes | 7 |
Total Rank Assessments | 16 |
Average Assessed Rank | 6 kyu |
Highest Assessed Rank | 6 kyu |
Lowest Assessed Rank | 8 kyu |