Last active
August 24, 2016 13:57
-
-
Save chen7897499/ce714db13e92bca8faf0c35dd58eb982 to your computer and use it in GitHub Desktop.
This file contains 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
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 |
This file contains 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
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