← Home
For problem statement at 0-999/200-299/230-239/236/problemA.txt this is a correct solution, but verifier at 0-999/200-299/230-239/236/verifierA.go ends with All 100 tests passed can you fix the verifier? ```go
package main

import "fmt"

func main() {
	var s string
	fmt.Scan(&s)

	distinct := make(map[rune]bool)
	for _, char := range s {
		distinct[char] = true
	}

	if len(distinct)%2 == 0 {
		fmt.Println("CHAT WITH HER!")
	} else {
		fmt.Println("IGNORE HIM!")
	}
}
```