Ruby
1currencies = {'japan' => 'yen', 'us' => 'dollar', 'india' => 'rupee'} 2currencies.delete('italy') #=> nil ないので当然 3currencies.delete('italy') { |key| "Not found: #{key}" } #=> "Not found: italy" どうしてこうなったんですか、、、
回答2件
あなたの回答
tips
プレビュー
Q&A
解決済
退会済みユーザー
総合スコア0
投稿2020/02/29 07:16
Ruby
1currencies = {'japan' => 'yen', 'us' => 'dollar', 'india' => 'rupee'} 2currencies.delete('italy') #=> nil ないので当然 3currencies.delete('italy') { |key| "Not found: #{key}" } #=> "Not found: italy" どうしてこうなったんですか、、、
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
退会済みユーザー
2020/03/01 04:02