루비의 해시 값을 기준으로 해시 배열 내에서 검색하려면 어떻게 해야 합니까? 나는 해시 배열을 가지고 있어요, @fathers. a_father = { "father" => "Bob", "age" => 40 } @fathers "David", "age" => 32 } @fathers "Batman", "age" => 50 } @fathers 35) #=> array containing the hashes of bob and batman 감사해요.Enumerable #select(일명: Enumerable #select)를 찾고 있습니다.find_all): @fathers.select {|father| father["age"] > 35 } # => [ { "age" => 40, "father" => "Bo..