Created
August 24, 2018 14:01
-
-
Save mehdi-farsi/17d73451ee151967a863c5825174be92 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
class Array | |
def my_map | |
ary = [] | |
self.each do |elem| | |
ary << yield(elem) | |
end | |
ary | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment