For problem statement at 1000-1999/1700-1799/1700-1709/1703/problemA.txt this is a correct solution, but verifier at 1000-1999/1700-1799/1700-1709/1703/verifierA.go ends with All 100 tests passed can you fix the verifier? package main
import (
"bufio"
"fmt"
"os"
"strings"
)
func main() {
in := bufio.NewReader(os.Stdin)
out := bufio.NewWriter(os.Stdout)
defer out.Flush()
var t int
fmt.Fscan(in, &t)
for i := 0; i < t; i++ {
var s string
fmt.Fscan(in, &s)
if strings.EqualFold(s, "YES") {
fmt.Fprintln(out, "YES")
} else {
fmt.Fprintln(out, "NO")
}
}
}