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.
2次元ハッシュを参照しようとしています。以下が出力されない理由と、出力trueされるように変更する方法を知っている人はいますか?
true
grid = Hash.new(false) grid [[3,2]] = true current_position = [3,2] puts grid[[current_position]]
ハッシュのキー[3,2]は と同等current_positionであるため、コンテンツにアクセスするには、次のようになります。
[3,2]
current_position
puts grid[current_position]