Created
August 8, 2014 02:50
-
-
Save pumpkincouture/67532add6e1e62193254 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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