If some one can help me to fix this code. I want to store the value of
faulty_array[num] in faulty_line[i] and correct_array[num] in
correct_line[i] so that I can access them at later stage. I will be
thankful.
I’m not positive what you are trying to do here. However from the code
you
have posted i never changes so you will continuously overwrite
faulty_line[i] and correct_line[i].
If you are trying to correlate line numbers with line data maybe a hash
would be better? For example:
array_of_errors # this would be an array
error_line_numbers # this would be an array
errors = {}
error_line_numbers.each do |line_number|
errors[line_number.to_sym] = array_of_errors[line_number]
end
of course this also assumes a one to one mapping of the line_number and
line_data arrays.
–
“Hey brother Christian with your high and mighty errand, Your actions
speak
so loud, I can’t hear a word you’re saying.”
-Greg Graffin (Bad Religion)
This forum is not affiliated to the Ruby language, Ruby on Rails framework, nor any Ruby applications discussed here.