8 lines
101 B
Go
8 lines
101 B
Go
//go:build !solution
|
|
// +build !solution
|
|
|
|
package speller
|
|
|
|
func Spell(n int64) string {
|
|
return ""
|
|
}
|