Files
JavaScript/Maths/test/FindMaxRecursion.test.js
Exortions 21a851176d merge: Find max recursion (#1010)
* add yt video association algorithm

* Implement FindMaxRecursion in JS

* Delete file in other PR

* Fix requested changes

* Add requested changes

* Delete YoutubeVideoAssociation.test.js

* Deduplicate comment

* Remove trailing spaces

Co-authored-by: Lars Müller <34514239+appgurueu@users.noreply.github.com>
2022-05-09 15:05:16 +05:30

59 lines
1.6 KiB
JavaScript

import { findMaxRecursion } from '../FindMaxRecursion'
describe('Test findMaxRecursion function', () => {
const positiveAndNegativeArray = [1, 2, 4, 5, -1, -2, -4, -5]
const positiveAndNegativeArray1 = [10, 40, 100, 20, -10, -40, -100, -20]
const positiveArray = [1, 2, 4, 5]
const positiveArray1 = [10, 40, 100, 20]
const negativeArray = [-1, -2, -4, -5]
const negativeArray1 = [-10, -40, -100, -20]
const zeroArray = [0, 0, 0, 0]
const emptyArray = []
it('Testing with positive arrays', () => {
expect(findMaxRecursion(positiveArray, 0, positiveArray.length - 1)).toBe(5)
expect(findMaxRecursion(positiveArray1, 0, positiveArray1.length - 1)).toBe(
100
)
})
it('Testing with negative arrays', () => {
expect(findMaxRecursion(negativeArray, 0, negativeArray.length - 1)).toBe(
-1
)
expect(findMaxRecursion(negativeArray1, 0, negativeArray1.length - 1)).toBe(
-10
)
})
it('Testing with positive and negative arrays', () => {
expect(
findMaxRecursion(
positiveAndNegativeArray,
0,
positiveAndNegativeArray.length - 1
)
).toBe(5)
expect(
findMaxRecursion(
positiveAndNegativeArray1,
0,
positiveAndNegativeArray1.length - 1
)
).toBe(100)
})
it('Testing with zero arrays', () => {
expect(findMaxRecursion(zeroArray, 0, zeroArray.length - 1)).toBe(0)
})
it('Testing with empty arrays', () => {
expect(findMaxRecursion(emptyArray, 0, emptyArray.length - 1)).toBe(
undefined
)
})
})