-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathdetect_capital.go
48 lines (41 loc) · 902 Bytes
/
detect_capital.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
package main
import "strings"
// 1. using strings' build-in func
func detectCapitalUse(word string) bool {
return word == strings.ToLower(word) || word == strings.ToUpper(word) || word == strings.Title(strings.ToLower(word))
}
// 2. set condition for judging
func isCapital(letter int32) bool {
return letter <= 'Z' && letter >= 'A'
}
/*
func detectCapitalUse(word string) bool {
var condition = 0
for index, letter := range word {
switch isCapital(letter) {
case true:
if condition == 0 {
condition = 1
continue
} else if condition == 1 {
continue
} else if condition == 2 || condition == 3 {
return false
}
case false:
if condition == 0 {
condition = 2
} else if condition == 1{
if index == 1 {
condition = 3
} else {
return false
}
} else if condition == 2 || condition == 3{
continue
}
}
}
return true
}
*/