Files
JavaScript/Dynamic-Programming/tests/KadaneAlgo.test.js
Abhijeet Tiwari 5a59d1efc0 changes made
2021-10-06 15:02:37 +05:30

9 lines
334 B
JavaScript

import { kadaneAlgo } from '../KadaneAlgo'
test('it is being checked that 15 is the answer to the corresponding array input', () => {
expect(fc.kadaneAlgo([1, 2, 3, 4, 5])).toBe(15)
})
test('it is being checked that 5 is the answer to the corresponding array input', () => {
expect(fc.kadaneAlgo([-1, -2, -3, -4, 5])).toBe(5)
})