Skip to content

Instantly share code, notes, and snippets.

@pumpkincouture
Created August 8, 2014 02:50
Show Gist options
  • Save pumpkincouture/67532add6e1e62193254 to your computer and use it in GitHub Desktop.
Save pumpkincouture/67532add6e1e62193254 to your computer and use it in GitHub Desktop.
def computer_spaces(cells)
computer_spaces = []
cells.each do |k,v|
if cells[k] == "X"
computer_spaces << k
else
false
end
end
computer_spaces
end
def human_spaces(cells)
human_spaces = []
cells.each do |k,v|
if cells[k] == "O"
human_spaces << k
else
false
end
end
human_spaces
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment