mirror of https://github.com/01-edu/public.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
363 B
32 lines
363 B
package main |
|
|
|
import ( |
|
student "student" |
|
|
|
"lib" |
|
) |
|
|
|
func fib(n int) int { |
|
if n <= 0 { |
|
return 0 |
|
} |
|
t1 := 0 |
|
t2 := 1 |
|
for i := 2; i <= n; i++ { |
|
t1 += t2 |
|
t1, t2 = t2, t1 |
|
} |
|
return t2 |
|
} |
|
|
|
func main() { |
|
table := append(lib.MultRandIntBetween(-100, 150), |
|
20, |
|
0, |
|
9, |
|
2, |
|
) |
|
for _, arg := range table { |
|
lib.Challenge("Fib", student.Fib, fib, arg) |
|
} |
|
}
|
|
|