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