Skip to content

Instantly share code, notes, and snippets.

@chen7897499
Last active August 24, 2016 13:57
Show Gist options
  • Save chen7897499/ce714db13e92bca8faf0c35dd58eb982 to your computer and use it in GitHub Desktop.
Save chen7897499/ce714db13e92bca8faf0c35dd58eb982 to your computer and use it in GitHub Desktop.
class Array
def same_structure_as(b)
return false unless b.is_a?(Array) && self.is_a?(Array)
c = self.each_with_object([]) do |c,d|
if c.is_a?(Array)
d << c.length
else
d << 1
end
end
e = b.each_with_object([]) do |c,d|
if c.is_a?(Array)
d << c.length
else
d << 1
end
end
c == e && depth(self) == depth(b)
end
def depth(a)
return 0 unless a.is_a?(Array)
return 1 + depth(a[0])
end
end
class Array
def same_structure_as(a)
return false if self.class!=a.class || size!=a.size
a.each_index { |i| return false if self[i].class==Array && !self[i].same_structure_as(a[i]) }
true
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment