fork download
  1. u= [4,7,5,2,3,9];
  2. u.sort();
  3. print(u);
Success #stdin #stdout 0.01s 9992KB
stdin
Standard input is empty
stdout
[2, 3, 4, 5, 7, 9]