Advertisement
Onesible

Untitled

Feb 27th, 2025
296
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function solve(arr) {
  2.     arr.sort((a, b) => a.localeCompare(b));
  3.  
  4.     for (let [i, value] of arr.entries()) {
  5.         console.log(`${i + 1}.${value}`)
  6.     }
  7. }
  8.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement