作者DJYOSHITAKA (franchouchouISBEST)
標題Re: [閒聊] 每日leetcode
時間2024-10-02 13:04:10
早早早
天氣這麼好該出去完唄
別捲了==
def arrayRankTransform(self, arr: List[int]) -> List[int]:
mp = {}
for i,val in enumerate(sorted(arr)):
if val not in mp:
mp[val] = len(mp)+1
ans = []
for num in arr:
ans.append(mp[num])
return ans
--
※ 發信站: 批踢踢實業坊(ptt.org.tw), 來自: 125.229.37.69 (臺灣)
※ 文章網址: https://ptt.org.tw/Marginalman/M.1727845454.A.932
→ JIWP: 卷三小 10/02 13:05
推 sustainer123: 卷三小 10/02 13:05
→ argorok: 卷三小 10/02 13:05