← Home
For problem statement at 0-999/100-199/160-169/162/problemE.txt this is a correct solution, but verifier at 0-999/100-199/160-169/162/verifierE.go ends with All 100 tests passed. can you fix the verifier? ```go
package main

import (
	"fmt"
	"strings"
)

func main() {
	var p string
	fmt.Scan(&p)
	if strings.ContainsAny(p, "HQ9") {
		fmt.Println("YES")
	} else {
		fmt.Println("NO")
	}
}
```