-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmissing_number_test.go
55 lines (50 loc) · 1.38 KB
/
missing_number_test.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
package main
import (
"testing"
)
func Test_missingNumber(t *testing.T) {
type args struct {
nums []int
}
tests := []struct {
name string
args args
want int
}{
{"missing number", args{nums: []int{3, 0, 1}}, 2},
{"missing number", args{nums: []int{0, 1}}, 2},
{"missing number", args{nums: []int{9, 6, 4, 2, 3, 5, 7, 0, 1}}, 8},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := missingNumber(tt.args.nums); got != tt.want {
t.Errorf("missingNumber() = %v, want %v", got, tt.want)
}
})
}
}
// Runtime: 40 ms, faster than 8.86% of Go online submissions for Missing Number.
// Memory Usage: 6.8 MB, less than 10.80% of Go online submissions for Missing Number.
func Test_missingNumber2(t *testing.T) {
type args struct {
nums []int
}
tests := []struct {
name string
args args
want int
}{
{"missing number", args{nums: []int{3, 0, 1}}, 2},
{"missing number", args{nums: []int{0, 1}}, 2},
{"missing number", args{nums: []int{9, 6, 4, 2, 3, 5, 7, 0, 1}}, 8},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := missingNumber2(tt.args.nums); got != tt.want {
t.Errorf("missingNumber2() = %v, want %v", got, tt.want)
}
})
}
}
// Runtime: 29 ms, faster than 28.98% of Go online submissions for Missing Number.
// Memory Usage: 6.2 MB, less than 97.54% of Go online submissions for Missing Number.