HIDDEN DIGITS(CodeEval)

CHALLENGE DESCRIPTION:

In this challenge you're given a random string containing hidden and visible digits. The digits are hidden behind lower case latin letters as follows: 0 is behind 'a', 1 is behind ' b ' etc., 9 is behind 'j'. Any other symbol in the string means nothing and has to be ignored. So the challenge is to find all visible and hidden digits in the string and print them out in order of their appearance.

INPUT SAMPLE:

Your program should accept as its first argument a path to a filename. Each line in this file contains a string. You may assume that there will be no white spaces inside the string. E.g.

abcdefghik
Xa,}A#5N}{xOBwYBHIlH,#W
(ABW>'yy^'M{X-K}q,
6240488

OUTPUT SAMPLE:

For each test case print out all visible and hidden digits in order of their appearance. Print out NONE in case there is no digits in the string. E.g.

012345678
05
NONE
6240488

MyCode

#!/usr/bin/env ruby -w

def show_hidden_word(word)
  val = word.each_char.map { |char|
    if char.to_i.to_s == char
      char.to_i
    else
      ('a'..'j').to_a.index(char)
    end
  }.join
  val.empty? ? 'NONE' : val
end

ARGF.each_line do |line|
  puts show_hidden_word(line.chomp)
end