-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsparseArray.go
More file actions
91 lines (69 loc) · 1.62 KB
/
sparseArray.go
File metadata and controls
91 lines (69 loc) · 1.62 KB
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
package main
import (
"bufio"
"fmt"
"io"
"os"
"strconv"
"strings"
)
// Complete the matchingStrings function below.
func matchingStrings(strings []string, queries []string) []int32 {
CountList := make([]int32, len(queries))
strMap := make(map[string]int32)
for i := 0; i < len(strings); i++ {
count, ok := strMap[strings[i]]
if !ok {
strMap[strings[i]] = 1
} else {
strMap[strings[i]] = count + 1
}
}
for i := 0; i < len(queries); i++ {
count, _ := strMap[queries[i]]
CountList[i] = count
}
return CountList
}
func main() {
reader := bufio.NewReaderSize(os.Stdin, 1024*1024)
stdout, err := os.Create(os.Getenv("OUTPUT_PATH"))
checkError(err)
defer stdout.Close()
writer := bufio.NewWriterSize(stdout, 1024*1024)
stringsCount, err := strconv.ParseInt(readLine(reader), 10, 64)
checkError(err)
var strings []string
for i := 0; i < int(stringsCount); i++ {
stringsItem := readLine(reader)
strings = append(strings, stringsItem)
}
queriesCount, err := strconv.ParseInt(readLine(reader), 10, 64)
checkError(err)
var queries []string
for i := 0; i < int(queriesCount); i++ {
queriesItem := readLine(reader)
queries = append(queries, queriesItem)
}
res := matchingStrings(strings, queries)
for i, resItem := range res {
fmt.Fprintf(writer, "%d", resItem)
if i != len(res)-1 {
fmt.Fprintf(writer, "\n")
}
}
fmt.Fprintf(writer, "\n")
writer.Flush()
}
func readLine(reader *bufio.Reader) string {
str, _, err := reader.ReadLine()
if err == io.EOF {
return ""
}
return strings.TrimRight(string(str), "\r\n")
}
func checkError(err error) {
if err != nil {
panic(err)
}
}