Read the question, write TypeScript on the right, then Run or Check.
QuestionHint and solution stay closed until you open them
Read integers; print them ascending using bubble sort (or any sort).
Input. Space-separated integers.
Output. Sorted ascending.
Examples
Input
3 1 2
Output
1 2 3
Hint
- nums.sort((a,b)=>a-b) is fine for this lab.
Show correct code
Peek only after you have tried. You can still Check your own version.
const nums = readLine().trim().split(/\s+/).map(Number);
console.log(nums.sort((a, b) => a - b).join(' '));
main.tstsc · readLine() · Ctrl + Enter
ResultIdle
Run to see output. Check grades the tests.