Skip to content

Commit 532cf3e

Browse files
authored
merge: Add test case to FlashSort algorithm (TheAlgorithms#946)
1 parent 233ec59 commit 532cf3e

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

Sorts/test/FlashSort.test.js

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
import { flashSort } from '../FlashSort'
2+
3+
test('The flash sort of the array [3, 0, 2, 5, -1, 4, 1, -2] is [-2, -1, 0, 1, 2, 3, 4, 5]', () => {
4+
const array = [3, 0, 2, 5, -1, 4, 1, -2]
5+
const res = flashSort(array)
6+
expect(res).toEqual([-2, -1, 0, 1, 2, 3, 4, 5])
7+
})
8+
9+
test('The flash sort of the array [-3, 0, 2, -5, -1, 4, 1, -2] is [-5, -3, -2, -1, 0, 1, 2, 4]', () => {
10+
const array = [-3, 0, 2, -5, -1, 4, 1, -2]
11+
const res = flashSort(array)
12+
expect(res).toEqual([-5, -3, -2, -1, 0, 1, 2, 4])
13+
})
14+
15+
test('The flash sort of the array [13, 0, 12, 5, -1, 14, 1, -2] is [-2, -1, 0, 1, 5, 12, 13, 14]', () => {
16+
const array = [13, 0, 12, 5, -1, 14, 1, -2]
17+
const res = flashSort(array)
18+
expect(res).toEqual([-2, -1, 0, 1, 5, 12, 13, 14])
19+
})
20+
21+
test('The flash sort of the array [-3, 0, -2, -5, -1, -4, -1, -2] is [-5, -4, -3, -2, -2, -1, -1, 0]', () => {
22+
const array = [-3, 0, -2, -5, -1, -4, -1, -2]
23+
const res = flashSort(array)
24+
expect(res).toEqual([-5, -4, -3, -2, -2, -1, -1, 0])
25+
})

0 commit comments

Comments
 (0)