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.
|
|
|
package main
|
|
|
|
|
|
|
|
func rec(a, b, cnt int) int {
|
|
|
|
if a > b {
|
|
|
|
return -1
|
|
|
|
}
|
|
|
|
if a == b {
|
|
|
|
return cnt
|
|
|
|
}
|
|
|
|
if rec(a*2, b, cnt+1) != -1 {
|
|
|
|
return rec(a*2, b, cnt+1)
|
|
|
|
}
|
|
|
|
if rec(a*3, b, cnt+1) != -1 {
|
|
|
|
return rec(a*3, b, cnt+1)
|
|
|
|
}
|
|
|
|
return -1
|
|
|
|
}
|
|
|
|
|
|
|
|
func Fib(n int) int {
|
|
|
|
if n <= 0 {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
t1 := 0
|
|
|
|
t2 := 1
|
|
|
|
for i := 2; i <= n; i++ {
|
Refactor & Beautify & destruction commit
return early, remove else branches, reorder conditions and top-level functions, remove empty lines, remove unnecessary append(), fix typos, stop using testing package, remove dead code, fix mistakes in subjects, tests and solutions, remove disclaimers, reformat comments, simplify solutions, tests, add more instructions to subjects, remove obsolete files, etc.
Some of the reasons behind those modifications will be added to good-practices.en.md
Some of the exercises are now broken, they will have to be fixed, most of them have a "TODO:" comment.
5 years ago
|
|
|
t1 += t2
|
|
|
|
tmp := t1
|
|
|
|
t1 = t2
|
|
|
|
t2 = tmp
|
|
|
|
}
|
|
|
|
return t2
|
|
|
|
}
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
}
|