LeetCode/릿코드-Two Sum-python
문제
풀이
- given an array of integers
nums
and an integertarget
, return indices of the two numbers such that they add up totarget
. - you may assume that each input would have
exatly one solution
, and you may not use the same element twice. - you can return the answer in any order.
- follow-up: can you come up with an algorithm that is less than
o(n^2)
time complexity?
코드
# leetcode, easy : two sum, python3
# array, hash table
class Solution:
def twoSum(self, nums: List[int], target: int) -> List[int]:
for x in range(len(nums)):
for y in range(x+1, len(nums)):
if nums[x] + nums[y] == target:
return [x, y]
결과
출처 && 깃허브
Author And Source
이 문제에 관하여(LeetCode/릿코드-Two Sum-python), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@cosmos/LeetCode릿코드-Two-Sum-python저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)