package main import ( "fmt" ) func numDecodings(s string) int { return 0 } func main() { str := "12432546" fmt.Println(numDecodings(str)) }