1
0
Fork 0
mirror of https://gitlab.com/mfocko/LeetCode.git synced 2024-11-09 15:59:06 +01:00

problems(js): add “2648. Generate Fibonacci Sequence”

Signed-off-by: Matej Focko <mfocko@redhat.com>
This commit is contained in:
Matej Focko 2023-06-03 16:15:00 +02:00
parent 6b53e90509
commit 85b9b28037
Signed by: mfocko
GPG key ID: 7C47D46246790496

View file

@ -0,0 +1,17 @@
/**
* @return {Generator<number>}
*/
var fibGenerator = function*() {
let a = 0, b = 1;
while (true) {
yield a;
[a, b] = [b, a + b];
}
};
/**
* const gen = fibGenerator();
* gen.next().value; // 0
* gen.next().value; // 1
*/