Question: In Python please! Write a function twoSum( ) which, given an array of integers nums and an integer target, return indices of the two numbers
In Python please!

Write a function twoSum( ) which, given an array of integers nums and an integer target, return indices of the two numbers such that they add up to target Ex: If the input is: nums = [2,7,11,15], target = 9 the output is: [0,1] Note: Because nums[0] + nums[1] == 9, we return [0, 1]. If there are more than one pairs of numbers adding up to the target, return any one of the pairs. when no integers add up to the target, return []. Hint: Think about two ways to solve this problem Solution 1. search for all possible pairs of numbers that add up to target using nested for loop: if we fix one of the numbers, say x , we can scan the entire array to find the next number y which is target - x Solution2. Can we use a dict to store the number and its corresponding index to solve the problem using one for loop? main.py Load default template... 1 def twoSum(nums, target):||
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
