Skip to content

Commit

Permalink
merge: Add FindMin (#849)
Browse files Browse the repository at this point in the history
  • Loading branch information
Yatin-kathuria committed Nov 26, 2021
1 parent 2fb0d48 commit de27089
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 0 deletions.
23 changes: 23 additions & 0 deletions Maths/FindMin.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
/**
* @function FindMin
* @description Function to find the minimum number given in an array of integers.
* @param {Integer[]} nums - Array of Integers
* @return {Integer} - The minimum number of the array.
*/

const findMin = (...nums) => {
if (nums.length === 0) {
throw new TypeError('Array is empty')
}

let min = nums[0]
for (let i = 1; i < nums.length; i++) {
if (nums[i] < min) {
min = nums[i]
}
}

return min
}

export { findMin }
18 changes: 18 additions & 0 deletions Maths/test/FindMin.test.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
import { findMin } from '../FindMin'

describe('FindMin', () => {
test('Should return the minimum number in the array', () => {
const min = findMin(2, 5, 1, 12, 43, 1, 9)
expect(min).toBe(1)
})

test('Should return the minimum number in the array', () => {
const min = findMin(21, 513, 6)
expect(min).toBe(6)
})

test('Should throw error', () => {
const min = () => findMin()
expect(min).toThrow('Array is empty')
})
})

0 comments on commit de27089

Please sign in to comment.