728x90
오늘은... 종강일...
너무 피곤해서.... 비기너 문제로 했다...😶
내일부터 다시 화이팅...
class Solution:
def restoreString(self, s: str, indices):
answer_list = ["" for _ in indices]
answer = ""
for idx, index in enumerate(indices):
answer_list[index] = s[idx]
for w in answer_list:
answer += w
return answer
728x90
'TIL' 카테고리의 다른 글
2024-07-09🤣 TIL - TailwindCSS (0) | 2024.07.10 |
---|---|
99클럽 코테 스터디 28일차 TIL + Sort (0) | 2024.06.19 |
99클럽 코테 스터디 26일차 TIL + 자료구조, 데이터 사이언스 (0) | 2024.06.18 |
99클럽 코테 스터디 25일차 TIL + dictionary (1) | 2024.06.16 |
99클럽 코테 스터디 24일차 TIL + XOR (0) | 2024.06.15 |