mirror of
https://github.com/theoludwig/programming-challenges.git
synced 2025-05-18 12:02:53 +02:00
6 lines
98 B
JavaScript
6 lines
98 B
JavaScript
function solution (numbers) {
|
|
return numbers.sort((a, b) => a - b)
|
|
}
|
|
|
|
module.exports = solution
|