moonlightshadow123
4/10/2017 - 1:55 PM

167-Two-Sum-II---Input-array-is-sorted https://leetcode.com/problems/two-sum-ii-input-array-is-sorted/

class Solution(object):
    def twoSum(self, numbers, target):
        """
        :type numbers: List[int]
        :type target: int
        :rtype: List[int]
        """
        start = 0
        end = len(numbers) - 1
        while start != end:
            curSum = numbers[start] + numbers[end]
            if curSum == target:
                return start+1, end+1
            elif curSum < target:
                start += 1
            else:
                end -= 1
        return -1
class Solution(object):
    def twoSum(self, numbers, target):
        """
        :type numbers: List[int]
        :type target: int
        :rtype: List[int]
        """
        for i in range(len(numbers)):
            j = self.bSearch(i+1, numbers, target-numbers[i])
            if j != -1:
                return [i+1, j+1]
    def bSearch(self, low, nums, target):
        high = len(nums) - 1
        while low < high:
            mid = (low + high) / 2
            if nums[mid] < target:
                low = mid + 1
            elif nums[mid] > target:
                high = mid - 1
            else:
                return mid
        return low if nums[low] == target else -1

Given an array of integers that is already sorted in ascending order, find two numbers such that they add up to a specific target number.

The function twoSum should return indices of the two numbers such that they add up to the target, where index1 must be less than index2. Please note that your returned answers (both index1 and index2) are not zero-based.

You may assume that each input would have exactly one solution and you may not use the same element twice.

Input: numbers={2, 7, 11, 15}, target=9
Output: index1=1, index2=2