@@ -0,0 +1,15 @@
package main
import (
"unicode"
)
func isAlphaNum(c rune) bool {
return unicode.IsLetter(c) || unicode.IsNumber(c)
}
func assert(cond bool) {
if cond != true {
panic("Assertion Failed")
The note is not visible to the blocked user.