This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | """ | |
| https://leetcode.com/problems/two-sum-ii-input-array-is-sorted/ | |
| !!! Understanding The Problem !!! | |
| In Two Sum II, we are told that the array is sorted. Whenever a | |
| coding question includes restraints or conditions, you should ask | |
| yourself what the impact of that condition (the array being sorted) is. | |
| !!! Picking Your Approach From Your Toolbox !!! |