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.
21 lines
242 B
21 lines
242 B
5 years ago
|
package main
|
||
|
|
||
|
func Game23(a, b int) int {
|
||
|
if a > b {
|
||
|
return -1
|
||
|
}
|
||
|
if a == b {
|
||
|
return 0
|
||
|
}
|
||
|
if Game23(a*2, b) != -1 {
|
||
|
return 1 + Game23(a*2, b)
|
||
|
}
|
||
|
if Game23(a*3, b) != -1 {
|
||
|
return 1 + Game23(a*3, b)
|
||
|
}
|
||
|
return -1
|
||
|
}
|
||
|
|
||
|
func main() {
|
||
|
}
|