changes made

This commit is contained in:
Abhijeet Tiwari
2021-10-06 15:02:37 +05:30
parent c0fa1401c8
commit 5a59d1efc0
2 changed files with 4 additions and 13 deletions

View File

@ -23,13 +23,4 @@ function kadaneAlgo (array) {
return maxSum return maxSum
// This function returns largest sum contiguous sum in a array // This function returns largest sum contiguous sum in a array
} }
function main () { export { kadaneAlgo }
// input array
const myArray = [1, 2, 3, 4, -6]
// calling the function
const result = kadaneAlgo(myArray)
// result is the variable for storing the ourput of kadaneAlgo function
console.log(result)
}
main()
module.exports = { kadaneAlgo }

View File

@ -1,8 +1,8 @@
const fc = require('../kadaneAlgo') import { kadaneAlgo } from '../KadaneAlgo'
test('test1', () => { 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) expect(fc.kadaneAlgo([1, 2, 3, 4, 5])).toBe(15)
}) })
test('test2', () => { 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) expect(fc.kadaneAlgo([-1, -2, -3, -4, 5])).toBe(5)
}) })