Skip to content
This repository has been archived by the owner on Jul 10, 2024. It is now read-only.

smallest two elemtnts TS #5105

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
function findTheSmallestTwoElements(arr: number[]): number[] {
if (arr.length < 2) {
throw new Error("Array should have at least two elemnts.")
}

const sortedArr = arr.slice().sort((a,b) => a - b);
return sortedArr.slice(0, 2);
}

const numbers = [5, 2, 8, 1, 7, 3];
const smallestTwo = findTheSmallestTwoElements(numbers);

console.log("Original Array:", numbers);
console.log("Smallest Two Elements:", smallestTwo);