
[LeetCode] #167. Two Sum 2 (Python)
작성일시: 2023년 7월 21일 오전 10:50Level : Medium알고리즘 스터디 시간에 JB 선배가 준비한 리트코드 문제! 난이도는 “Medium”이다.📖Problems: #167. Two sum 2Given a 1-indexed array of integers numbers that is already sorted in non-decreasing order, find two numbers such that they add up to a specific target number. Let these two numbers be numbers[index1] and numbers[index2] where 1 .Return the indices of the two numbers, index1 and i..
Coding Practice/LeetCode