For problem statement at 1000-1999/1300-1399/1320-1329/1325/problemB.txt this is a correct solution, but verifier at 1000-1999/1300-1399/1320-1329/1325/verifierB.go ends with All tests passed can you fix the verifier? ```go
package main
import (
"bufio"
"fmt"
"os"
)
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 n int
fmt.Fscan(in, &n)
distinct := make(map[int]struct{})
for j := 0; j < n; j++ {
var x int
fmt.Fscan(in, &x)
distinct[x] = struct{}{}
}
fmt.Fprintln(out, len(distinct))
}
}
```