[Python][LeetCode] 125. Valid Palindrome
Link
안녕하세요! 11기 SAFFYCIAL 김주현 기자입니다! 오늘의 포스팅은 SSAFY에서 한 달에 한번 진행되는, 삼성의 현업 개발자 분들과 질의 응답을 할 수 있는 ‘멘토링 프로그램’에 대해 다루고자 합니다. 이번 멘토링 프로그램에서 저는 멘티로 참여했고, 멘토님들과 질의 응답하...
Link ```python from sortedcontainers import SortedList from collections import deque
```python “”” :type root: TreeNode :rtype: List[float] “”” Definition for a binary tree node. class TreeNode: (= ‘Binary Tree’) def init(self, val=0, left=No...