Skip to content

Instantly share code, notes, and snippets.

@pumpkincouture
Created September 15, 2014 23:06
Show Gist options
  • Save pumpkincouture/c49177625722d53a30f3 to your computer and use it in GitHub Desktop.
Save pumpkincouture/c49177625722d53a30f3 to your computer and use it in GitHub Desktop.
def get_block(original_file)
flights_block = []
original_file.each do |flight|
flights_block << flight
break if flight == []
end
flights_block
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment