Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
以下のタスクを実行できる Ruby の関数を教えてください。
「0」はテキスト「ゼロ」を与えるはずです
「5」は「5」というテキストを与えるはずです
「6」は「6」というテキストを与えるはずです
mapper = {0 => "zero", 1 => "one", 2 => "two",... } # and now you can use mapper to print the text version of a numer print mapper[2]