zero-based permutation nums라는 array가 주어졌을 때 같은 길이의 ans라는 array를 return하는데 이때 ans[i] = nums[nums[i]]가 된다.
class Solution:
def buildArray(self, nums: List[int]) -> List[int]:
final = [0]*len(nums)
for i in range(len(nums)):
final[i] = nums[nums[i]]
return final
'👩💻Developer > Leetcode' 카테고리의 다른 글
[Easy][Python] Count of Matches in Tournament (0) | 2022.10.23 |
---|---|
[Easy][Python] Defanging an IP Address (0) | 2022.10.23 |
[Easy][Python] Find Center of Star Graph (0) | 2022.10.22 |
[Easy][Python] Jewels and Stones (0) | 2022.10.22 |
[Easy][Python] Count Items Matching a Rule (0) | 2022.10.22 |
댓글