Top Categories
My First Take Home Interview Exercise: Flattening Nested Arrays using Recursion
- Category: Information Technology
- Sub Category: Android Development
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,
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/course/instagram-firebase
Facebook Group
https://www.facebook.com/groups/1240636442694543/
iOS Basic Training Course
https://www.letsbuildthatapp.com/basic-training
Completed Source Code
https://www.letsbuildthatapp.com/course_video?id=1752
Follow me on Twitter: https://twitter.com/buildthatapp