5 kyu
Fibonacci Streaming
694 of 2,788Unihedron
Description:
You're going to provide a needy programmer a utility method that generates an infinite amount of sequential fibonacci numbers.
to do this return an IntStream
starting with 1
A fibonacci sequence starts with two 1
s. Every element afterwards is the sum of the two previous elements. See:
1, 1, 2, 3, 5, 8, 13, ..., 89, 144, 233, 377, ...
Algorithms
Similar Kata:
Stats:
Created | May 30, 2015 |
Published | May 30, 2015 |
Warriors Trained | 6770 |
Total Skips | 557 |
Total Code Submissions | 8376 |
Total Times Completed | 2788 |
Java Completions | 694 |
TypeScript Completions | 420 |
Python Completions | 1321 |
JavaScript Completions | 324 |
Rust Completions | 109 |
OCaml Completions | 18 |
Prolog Completions | 9 |
Lua Completions | 21 |
Scala Completions | 13 |
Total Stars | 114 |
% of votes with a positive feedback rating | 90% of 383 |
Total "Very Satisfied" Votes | 322 |
Total "Somewhat Satisfied" Votes | 45 |
Total "Not Satisfied" Votes | 16 |
Total Rank Assessments | 22 |
Average Assessed Rank | 5 kyu |
Highest Assessed Rank | 5 kyu |
Lowest Assessed Rank | 7 kyu |