fork download
  1. DataThatOnlyHumansKnow = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
  2.  
  3. n, list = gets.chomp.split
  4.  
  5. table = {}
  6. DataThatOnlyHumansKnow.chars
  7. .each.with_index do |c, i| table[list[i].upcase] = c end
  8.  
  9. puts(Array.new(n.to_i).map do
  10. gets.chomp
  11. end.sort_by do |word|
  12. word.upcase.chars.map { |c| table[c] }
  13. end)
Success #stdin #stdout 0.01s 7456KB
stdin
5 ZYXWVuTSRQpONMLkJIHGFEDCBa
go
aLL
ACM
teamS
Go
stdout
teamS
go
Go
aLL
ACM