Skip to content

Instantly share code, notes, and snippets.

@gagaception
Last active October 13, 2015 14:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save gagaception/9eafaa28d0e0514cf634 to your computer and use it in GitHub Desktop.
Save gagaception/9eafaa28d0e0514cf634 to your computer and use it in GitHub Desktop.
image_blur
class Image
attr_accessor :data
def initialize (data)
@data = data
end
def output
@data.each do |sub|
sub.each do |cell|
print cell
end
puts "\n"
end
end
end
image = Image.new([[0,0,0,0,1],
[0,1,0,0,0],
[0,0,0,1,0],
[0,0,0,0,1]])
image.output
@gagaception
Copy link
Author

after changing initialize method everything works as it should

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment