목록2024/10/11
반응형
(1)
반응형
s5unnyjjj's LOG
[홀로 하는 코딩 공부] 002. Add Two Numbers(Python)
LeetCode사용 언어: Python문제 링크: https://leetcode.com/problems/add-two-numbers/ *** 본 문제를 푸는 과정을 공유하려 한다.▶ 차근차근 하나씩 단계를 나누어 보았으며, 크게 3개의 STEP으로 나누어진다. (이 역시 그림으로 그려보니 수월했다.) ▶ 그렇게 각 단계를 포함한 기능들 코드로 작성하면 아래와 같다. class Solution: def addTwoNumbers(self, l1: Optional[ListNode], l2: Optional[ListNode]) -> Optional[ListNode]: reverse_l1 = self.reverse(l1) final_l1 = self.changeList(revers..
Algorithm/Python
2024. 10. 11. 22:03