-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathfindMaxLength.test.js
89 lines (56 loc) · 1.45 KB
/
findMaxLength.test.js
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
const findMaxLength = require('./findMaxLength')
test('Example 1', () => {
const arr = [0, 1]
const result = findMaxLength(arr)
expect(result).toBe(2)
})
test('Example 2', () => {
const arr = [0, 1, 0]
const result = findMaxLength(arr)
expect(result).toBe(2)
})
test('empty array', () => {
const arr = []
const result = findMaxLength(arr)
expect(result).toBe(0)
})
test('only one element', () => {
const arr = [0]
const result = findMaxLength(arr)
expect(result).toBe(0)
})
test('two same elements', () => {
const arr = [0, 0]
const result = findMaxLength(arr)
expect(result).toBe(0)
})
test('two pairs of 0 and 1', () => {
const arr = [0, 1, 0, 1]
const result = findMaxLength(arr)
expect(result).toBe(4)
})
test('two 0 and two 1 in long array, return 4', () => {
const arr = [1, 1, 1, 0, 0, 1, 1, 1]
const result = findMaxLength(arr)
expect(result).toBe(4)
})
test('0110 should return 4', () => {
const arr = [0, 1, 1, 0]
const result = findMaxLength(arr)
expect(result).toBe(4)
})
test('01101 should return 4', () => {
const arr = [0, 1, 1, 0, 1]
const result = findMaxLength(arr)
expect(result).toBe(4)
})
test('011101 should return 2', () => {
const arr = [0, 1, 1, 1, 0, 1]
const result = findMaxLength(arr)
expect(result).toBe(2)
})
test('11110010111 should return 6', () => {
const arr = [1, 1, 1, 1, 0, 0, 1, 0, 1, 1, 1]
const result = findMaxLength(arr)
expect(result).toBe(6)
})