Coding Challenge: Two Sum
Given an array of integers, return indices of the two numbers such that they add up to a specific target.
Sample Input: [2, 7, 11, 15] & target = 9
Sample Output: [0, 1] because nums[0] + nums[1] = 2 + 7 = 9
◾◾◾◾◾ Related Content ◾◾◾◾◾
🖺 PyCharm Installation: https://youtu.be/XsL8JDkH-ec
⭐ Learn the basics of Python: https://www.youtube.com/watch?v=SX07VfT-7co&list=PL30AETbxgR-cvGNPAWsocLfEnlCK3c6Pw
◾◾◾◾◾ Let's Connect! ◾◾◾◾◾
🐦 Twitter (X): 🔗 https://twitter.com/@MaxRohowsky
📂 GitHub: 🔗 https://github.com/MaxRohowsky
💼 LinkedIn: 🔗 https://www.linkedin.com/in/maxrohowsky/
🔊 Discord: 🔗 https://discord.com/invite/JERatQsfY8
✅ Blog: 🔗 https://max.rohowsky.net
◾◾◾◾◾ Hashtags ◾◾◾◾◾
#CodeInterview #CodingChallenge