У меня есть этот объект класса Array
>> answers_to_problem
=> [#<Answer id: 807, problem_id: 1, player_id: 53, code: "function y = times2(x
)\r\n y = 2*x;\r\nend", message: nil, score: 12, output: nil, hide: nil, create
d_at: "2010-02-02 11:06:49", updated_at: "2010-02-02 11:06:49", correct_answer:
nil, leader: nil, success: true, cloned_from: nil>]
Для выполнения бинарной проверки мне нужен доступ к полю success . Я не уверен, что здесь даже используется правильная терминология, поэтому я не могу найти, как получить к ней доступ.
answer_to_problems был найден следующим образом:
answers_to_problem = Answer.find_all_by_problem_id_and_player_id(current_problem,player_id)
В конечном счете, я хочу сделать эту проверку:
is_correct = (answers_to_problem.success == true)