Skip to content

Commit 9e58468

Browse files
committed
fix: Added newlines at the end of the files
1 parent dc06d95 commit 9e58468

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Dynamic-Programming/MaxProductOfThree.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,4 @@ export function maxProductOfThree (arrayItems) {
3535
const prod1 = max1 * max2 * max3
3636
const prod2 = max1 * min1 * min2
3737
return Math.max(prod1, prod2)
38-
}
38+
}

Dynamic-Programming/tests/MaxProductOfThree.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,4 +67,4 @@ describe('MaxProductOfThree, random arrays of size 3 to 5', () => {
6767
expect(actualProduct === expectedProduct).toBeTruthy()
6868
})
6969
}
70-
})
70+
})

0 commit comments

Comments
 (0)