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.
31 lines
385 B
31 lines
385 B
package main |
|
|
|
import "./student" |
|
|
|
func fib(n int) int { |
|
if n <= 0 { |
|
return 0 |
|
} |
|
t1 := 0 |
|
t2 := 1 |
|
for i := 2; i <= n; i++ { |
|
t1 += t2 |
|
tmp := t1 |
|
t1 = t2 |
|
t2 = tmp |
|
} |
|
return t2 |
|
} |
|
|
|
func main() { |
|
table := []int{ |
|
20, |
|
0, |
|
9, |
|
2, |
|
} |
|
table = append(table, lib.MultRandIntBetween(-100, 150)...) |
|
for _, arg := range table { |
|
lib.Challenge("Fib", student.Fib, fib, arg) |
|
} |
|
}
|
|
|