Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
12
Task/Van-Eck-sequence/Wren/van-eck-sequence.wren
Normal file
12
Task/Van-Eck-sequence/Wren/van-eck-sequence.wren
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
var max = 1000
|
||||
var a = List.filled(max, 0)
|
||||
var seen = {}
|
||||
for (n in 0...max-1) {
|
||||
var m = seen[a[n]]
|
||||
if (m != null) a[n+1] = n - m
|
||||
seen[a[n]] = n
|
||||
}
|
||||
System.print("The first ten terms of the Van Eck sequence are:")
|
||||
System.print(a[0...10])
|
||||
System.print("\nTerms 991 to 1000 of the sequence are:")
|
||||
System.print(a[990..-1])
|
||||
Loading…
Add table
Add a link
Reference in a new issue