-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
60 lines (49 loc) · 1.02 KB
/
main.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
/*
Determine is a string is a permutation of another
*/
package main
import "fmt"
type test struct {
str1 string
str2 string
result bool
}
var tests []test
func main() {
for _, t := range tests {
if isPermutation(t.str1, t.str2) {
fmt.Println("Strings" + " " + t.str1 + " " + t.str2 + " are permutations")
} else {
fmt.Println("Strings" + " " + t.str1 + " " + t.str2 + " are not permutations")
}
}
}
func isPermutation(str1, str2 string) bool {
var charMap map[rune]int
charMap = make(map[rune]int)
len1 := len(str1)
len2 := len(str2)
diff := len1 - len2
if diff != 0 {
return false
}
for _, char := range str1 {
charMap[char] += 1
}
for _, char := range str2 {
charMap[char] -= 1
if charMap[char] == 0 {
delete(charMap, char)
}
}
if len(charMap) == 0 {
return true
}
return false
}
func init() {
tests = make([]test, 0)
tests = append(tests, test{"pepe", "pep", false})
tests = append(tests, test{"hannah", "hannah", true})
tests = append(tests, test{"abe", "normal", false})
}