You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
create methods that 'wrap' the following Array methods
add a few more methods...
commit your changes to your file and push the file your your rubyonraisltutor repository.
add a link to the file on github that you created here on this challenge.
# compact, count, delete_at, empty? , each, each_with_index, keep_if, select, collect, reduce, each_with_object# reverse_each, slice!, uniq!, unshift, rotate# a wrapper method is a method that encapsulates already defined logic# for example, the below is a wrapper of the capitalize methoddefmake_letters_capital(string)string.capitalizeend
ARRAYS
RESOURCES
http://www.ruby-doc.org/core-2.1.1/Array.html
The text was updated successfully, but these errors were encountered: