167 Two Sum II - Input array is sorted

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.

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

  #include <iostream>
  #include <array>
  using namespace std;



  template<size_t SIZE>
  void twoSum(array<int, SIZE> *numbers, int target) 
  {
      int memory = 0;
      for (int i = memory; i < (*numbers).size(); ++i)
      {
          for (int j = 1; j < (*numbers).size(); ++j)
          {
              if ((*numbers).at(i) + (*numbers).at(j) == target) {
                  cout << "index1=" << i + 1 << ", index2=" << j + 1;
                  break;
              }

          }
      }
  }


  int main()
  {
      array<int, 10> myArray = { 0,1,2,3,4,5,6,7,8,9 };
      twoSum(&myArray, 17);
  }

Last updated