728x90
https://leetcode.com/problems/two-sum/submissions/
간단한문제, 두개의 수를 더해서 target 의 숫자가 나오면
그 두 수의 리스트 인덱스를 반환해주면된다.
from typing import List
class Solution:
def twoSum(self, nums: List[int], target: int) -> List[int]:
for i in range(len(nums)):
for j in range(i + 1, len(nums)):
if nums[i] + nums[j] == target:
return [i, j]
728x90
'PS > 릿코드' 카테고리의 다른 글
[릿코드 638] Shopping Offers (파이썬/python) (0) | 2023.02.23 |
---|---|
[릿코드 86] Partition List (파이썬/python) (0) | 2023.02.23 |
[릿코드 1599] Maximum Profit of Operating a Centennial Wheel (파이썬/python) (0) | 2023.02.22 |
[릿코드 721] Accounts Merge (파이썬/python) (0) | 2022.06.22 |
[릿코드 1347] Minimum Number of Steps to Make Two Strings Anagram (파이썬/python) (0) | 2022.06.15 |