Problem Statement
Given an array of integers nums and an integer target, return the indices of the two numbers such that they add up to target.
Input: nums = [2, 7, 11, 15], target = 9Output: [0, 1]Explanation: nums[0] + nums[1] = 2 + 7 = 9
Thought P...