[Ruby] Hashの比較について
2つのhashを比較するには?
== を使う== 演算子を使用することで、hashの中身まで一致しているかを判定することができます。
hash1 = {"flower" => "花", "grass" => "草", "tree" => "木" }hash2 = {"flower" => "花", "grass" => "草", "tree" => "木" }hash3 = {"flower" => "花", "grass" => "草", "water" => "水"