fork download
  1. puts readlines.sort_by {|s| s[/\d+$/].to_i}
Success #stdin #stdout 0s 6428KB
stdin
a b c 44
x y 33
z 22
11
stdout
11
z 22
x y 33
a b c 44