fork(1) download
  1. class String;def d;downcase.tr('ё','е');end;end
  2.  
  3. def g(s)
  4. s.chars.sort_by(&:d).join
  5. end
  6.  
  7. p g("еМиномЁтЙ")
Success #stdin #stdout 0s 28688KB
stdin
Standard input is empty
stdout
"ЁЙМеимнот"