global

def self.location?(array)

def self.location?(array)
  array.is_a?(Array) && array.size == 2 && array.all? { |e| e.is_a?(Integer) }
end