1
2
3
4
5
6
7
8
|
class Solution:
def targetIndices(self, nums: List[int], target: int) -> List[int]:
ans=[]
nums.sort()
for i in range(len(nums)):
if target==nums[i]: ans.append(i)
#if target<i: break
return ans
|
cs |
반응형
'python-algorithm' 카테고리의 다른 글
leetcode 2176. Count Equal and Divisible Pairs in an Array (0) | 2022.03.15 |
---|---|
leetcode 1844. Replace All Digits with Characters (0) | 2022.03.15 |
직사각형 별찍기 (0) | 2022.03.15 |
백준 2139 나는 너가 살아온 날을 알고 있다 (0) | 2022.03.15 |
백준 24266 알고리즘 수업 - 알고리즘의 수행 시간 5 (0) | 2022.03.14 |
댓글