Skip to content

josephferris/ruby-flatten-array-lc

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 

Repository files navigation

Ruby: Flatten Arrays

#
#  1. Create a function to flatten the below array by one dimension
#
#    oneDimensionalArray = [1, [2, 3, [4, 5]]]
#
#
#  2. Create a function to flatten the below array n times.
#
#     nTimesArray = [1, [2, 3, [4, [5, 6]]]]
#
#
#  3. Create a function to flatten the below array using recursion.
#
#     arrayWithRecursion = [1, [2, 3, [4, [5, 6]]]]
#