-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsubstring-xor-queries.go
66 lines (58 loc) · 1.3 KB
/
substring-xor-queries.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
package main
import (
"fmt"
"strconv"
"strings"
)
// source: https://leetcode.com/problems/substring-xor-queries/
func substringXorQueries(s string, queries [][]int) [][]int {
n := len(queries)
ans := make([][]int, 0, n)
for _, q := range queries {
target := strconv.FormatInt(int64(q[0]^q[1]), 2)
if ind := strings.Index(s, target); ind != -1 {
ans = append(ans, []int{ind, ind + len(target) - 1})
} else {
ans = append(ans, []int{-1, -1})
}
}
return ans
}
func main() {
testCases := []struct {
s string
queries [][]int
want [][]int
}{
{
s: "101101",
queries: [][]int{{0, 5}, {1, 2}},
want: [][]int{{0, 2}, {2, 3}},
},
{
s: "0101",
queries: [][]int{{12, 8}},
want: [][]int{{-1, -1}},
},
{
s: "1",
queries: [][]int{{4, 5}},
want: [][]int{{0, 0}},
},
}
successes := 0
for _, tc := range testCases {
x := substringXorQueries(tc.s, tc.queries)
status := "ERROR"
if fmt.Sprint(x) == fmt.Sprint(tc.want) {
status = "OK"
successes++
}
fmt.Println(status, " Expected: ", tc.want, " Actual: ", x)
}
if l := len(testCases); successes == len(testCases) {
fmt.Printf("===\nSUCCESS: %d of %d tests ended successfully\n", successes, l)
} else {
fmt.Printf("===\nFAIL: %d tests failed\n", l-successes)
}
}