Skip to content

Instantly share code, notes, and snippets.

View vincentchin's full-sized avatar

Vincent Chin vincentchin

  • New York
View GitHub Profile
class Image
attr_accessor :array
def initialize(array)
@array = array
@cells = []
@new_array = @array.map {|e| Array.new(e.size) }
end
def all_array_indexes