mirror of
https://github.com/theoludwig/programming-challenges.git
synced 2024-11-09 22:08:58 +01:00
24 lines
596 B
JavaScript
24 lines
596 B
JavaScript
function minNumber (array) {
|
|
let minNumber = { index: 0, value: array[0] }
|
|
for (let index = 1; index < array.length; index++) {
|
|
const number = array[index]
|
|
if (number < minNumber.value) {
|
|
minNumber = { index: index, value: array[index] }
|
|
}
|
|
}
|
|
return minNumber
|
|
}
|
|
|
|
function solution (array) {
|
|
const arrayDuplicated = [...array]
|
|
const resultArray = []
|
|
while (array.length !== resultArray.length) {
|
|
const min = minNumber(arrayDuplicated)
|
|
resultArray.push(min.value)
|
|
arrayDuplicated.splice(min.index, 1)
|
|
}
|
|
return resultArray
|
|
}
|
|
|
|
module.exports = solution
|