My First Take Home Interview Exercise: Flattening Nested Arrays using Recursion

Опубликовано: 04 Сентябрь 2017
на канале: Lets Build That App
21,875
569

Let me tell you about my first time going through an entire interview process and completing a take home exercise. This algorithm test involved setting up a server in the cloud that allowed users to pass in nested arrays. For example, we need to convert arrays like this:
[0, 1, [2, [3, 4]]] to [0, 1, 2, 3, 4]
Today we'll go over the recursive solution and tackle this challenge. Enjoy.

Instagram Firebase Course
https://www.letsbuildthatapp.com/cour...

Facebook Group
  / 1240636442694543  

iOS Basic Training Course
https://www.letsbuildthatapp.com/basi...

Completed Source Code
https://www.letsbuildthatapp.com/cour...

Follow me on Twitter:   / buildthatapp