CS计算机代考程序代写 # ===========================================

# ===========================================
# =====DON’T modify the following code=======
# ===========================================

class Position
attr_reader :row, :column

def initialize(row, column)
@row = row
@column = column
end

def to_s
“(#{row}, #{column})”
end
end

Leave a Reply

Your email address will not be published. Required fields are marked *