Skip to content

Instantly share code, notes, and snippets.

@csexton
Created July 11, 2014 21:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save csexton/5c36884102c321100a49 to your computer and use it in GitHub Desktop.
Save csexton/5c36884102c321100a49 to your computer and use it in GitHub Desktop.
$board = [
%w(# # # # # # # # # # # # # # # # # # # # # # # # # # #),
%w(~ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ #),
%w(# _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ #),
%w(# _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ #),
%w(# _ _ _ _ _ _ _ _ _ # # # # _ _ _ _ _ _ _ _ _ _ _ _ #),
%w(# _ _ _ _ _ _ _ _ _ # # # # _ _ _ _ _ _ _ _ _ _ _ _ #),
%w(# _ _ _ _ _ _ _ _ _ # # # # _ _ _ _ _ _ _ _ _ _ _ _ #),
%w(# # # # # # # # # # # # # # # # # # # # # # # # # # #)
]
$board2= [
%w(# # # # # # # # # # # # # # # # # # # # # # # # # # #),
%w(~ ~ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ #),
%w(# ~ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ #),
%w(# ~ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ #),
%w(# ~ _ _ _ _ _ _ _ _ # # # # _ _ _ _ _ _ _ _ _ _ _ _ #),
%w(# ~ _ _ _ _ _ _ _ _ # # # # _ _ _ _ _ _ _ _ _ _ _ _ #),
%w(# ~ ~ ~ ~ ~ ~ ~ ~ ~ # # # # _ _ _ _ _ _ _ _ _ _ _ _ #),
%w(# # # # # # # # # # # # # # # # # # # # # # # # # # #)
]
class Board
def initialize
@board = $board
end
def print_board
@board.each do |row|
row.each do |el|
print el
end
puts ""
end
end
def find_lowest_water
end
end
b = Board.new
b.print_board
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment