Skip to content

Commit 356aed4

Browse files
committed
Sorted programs into folders.
1 parent b2142d8 commit 356aed4

File tree

30 files changed

+5
-45
lines changed

30 files changed

+5
-45
lines changed
File renamed without changes.
File renamed without changes.
File renamed without changes.

chunk/test.js renamed to numbers/chunk/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ test('chunk ([1,2,3,4], 2) to give [[1,2], [3,4]]', () => {
1212
test('chunk ([1,2,3,4, 5], 2) to give [[1,2], [3,4], [5]]', () => {
1313
expect(chunk([1,2,3,4,5], 2)).toEqual([[1,2],[3,4],[5]]);
1414
});
15-
test('chunk ([1,2,3,4,5,6,7,8],3) to give [[1,2],[3,4],[5,6],[7,8]]',() => {
15+
test('chunk ([1,2,3,4,5,6,7,8],3) to give [[1,2,3],[4,5,6],[7,8]]',() => {
1616
expect(chunk([1,2,3,4,5,6,7,8],3)).toEqual([[1,2,3],[4,5,6],[7,8]]);
1717
});
1818
test('chunk ([1,2,3,4,5],4) to give [[1,2,3,4],[5]]',() => {
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)