Created
October 20, 2016 14:02
-
-
Save kalelc/0cdf6f4696a77ef5d798a45c125a4e20 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
module Kmeans | |
class Point | |
attr_accessor :x, :y | |
def initialize(x,y) | |
@x = x | |
@y = y | |
end | |
def to_a | |
[@x, @y] | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment