-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcount.go
154 lines (144 loc) · 3.77 KB
/
count.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
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
package boolean
// Counts no. of true values.
//
// // Count[n](a, b, ...)
// // a: 1st boolean
// // b: 2nd boolean
//
// Example:
// Count(true, true) == 2
// Count(true, false) == 1
// Count4(true, true, true, false) == 3
// Count4(false, true, false, false) == 1
func Count(a bool, b bool) int {
return Count2(a, b)
}
// Counts no. of true values.
//
// // Count[n](a, b, ...)
// // a: 1st boolean
// // b: 2nd boolean
//
// Example:
// Count(true, true) == 2
// Count(true, false) == 1
// Count4(true, true, true, false) == 3
// Count4(false, true, false, false) == 1
func Count0() int {
return 0
}
// Counts no. of true values.
//
// // Count[n](a, b, ...)
// // a: 1st boolean
// // b: 2nd boolean
//
// Example:
// Count(true, true) == 2
// Count(true, false) == 1
// Count4(true, true, true, false) == 3
// Count4(false, true, false, false) == 1
func Count1(a bool) int {
if a {
return 1
}
return 0
}
// Counts no. of true values.
//
// // Count[n](a, b, ...)
// // a: 1st boolean
// // b: 2nd boolean
//
// Example:
// Count(true, true) == 2
// Count(true, false) == 1
// Count4(true, true, true, false) == 3
// Count4(false, true, false, false) == 1
func Count2(a bool, b bool) int {
return Count1(a) + Count1(b)
}
// Counts no. of true values.
//
// // Count[n](a, b, ...)
// // a: 1st boolean
// // b: 2nd boolean
//
// Example:
// Count(true, true) == 2
// Count(true, false) == 1
// Count4(true, true, true, false) == 3
// Count4(false, true, false, false) == 1
func Count3(a bool, b bool, c bool) int {
return Count2(a, b) + Count1(c)
}
// Counts no. of true values.
//
// // Count[n](a, b, ...)
// // a: 1st boolean
// // b: 2nd boolean
//
// Example:
// Count(true, true) == 2
// Count(true, false) == 1
// Count4(true, true, true, false) == 3
// Count4(false, true, false, false) == 1
func Count4(a bool, b bool, c bool, d bool) int {
return Count2(a, b) + Count2(c, d)
}
// Counts no. of true values.
//
// // Count[n](a, b, ...)
// // a: 1st boolean
// // b: 2nd boolean
//
// Example:
// Count(true, true) == 2
// Count(true, false) == 1
// Count4(true, true, true, false) == 3
// Count4(false, true, false, false) == 1
func Count5(a bool, b bool, c bool, d bool, e bool) int {
return Count4(a, b, c, d) + Count1(e)
}
// Counts no. of true values.
//
// // Count[n](a, b, ...)
// // a: 1st boolean
// // b: 2nd boolean
//
// Example:
// Count(true, true) == 2
// Count(true, false) == 1
// Count4(true, true, true, false) == 3
// Count4(false, true, false, false) == 1
func Count6(a bool, b bool, c bool, d bool, e bool, f bool) int {
return Count4(a, b, c, d) + Count2(e, f)
}
// Counts no. of true values.
//
// // Count[n](a, b, ...)
// // a: 1st boolean
// // b: 2nd boolean
//
// Example:
// Count(true, true) == 2
// Count(true, false) == 1
// Count4(true, true, true, false) == 3
// Count4(false, true, false, false) == 1
func Count7(a bool, b bool, c bool, d bool, e bool, f bool, g bool) int {
return Count4(a, b, c, d) + Count3(e, f, g)
}
// Counts no. of true values.
//
// // Count[n](a, b, ...)
// // a: 1st boolean
// // b: 2nd boolean
//
// Example:
// Count(true, true) == 2
// Count(true, false) == 1
// Count4(true, true, true, false) == 3
// Count4(false, true, false, false) == 1
func Count8(a bool, b bool, c bool, d bool, e bool, f bool, g bool, h bool) int {
return Count4(a, b, c, d) + Count4(e, f, g, h)
}