Add tasks for all the new languages
This commit is contained in:
parent
9dc3c2bb62
commit
bba7bfd280
13208 changed files with 134745 additions and 0 deletions
9
Task/Fibonacci-sequence/Swift/fibonacci-sequence-3.swift
Normal file
9
Task/Fibonacci-sequence/Swift/fibonacci-sequence-3.swift
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
func fibonacci() -> SequenceOf<UInt> {
|
||||
return SequenceOf {() -> GeneratorOf<UInt> in
|
||||
var window: (UInt, UInt, UInt) = (0, 0, 1)
|
||||
return GeneratorOf {
|
||||
window = (window.1, window.2, window.1 + window.2)
|
||||
return window.0
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue