반응형
250x250
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 리트코드 #팰린드롬 #파이썬
- handler #looper #thread #runnable #핸들러 #루퍼 #스레드 #러너블
- 파이썬 #zip
- 코틀린 #Do it #깡샘 #안드로이드
- dfs #이진트리 #트리구조 #직렬화 #역직렬화 #파이썬 #리트코드 #leetcode #python
- exoplayer #mediaplayer #엑소플레이어 #안드로이드 #android
- python #백준 #2580 #스도쿠 #dfs #백트래킹
- 아스테리스크 #Asterisk #파이썬
- dfs #bfs #트리구조 #이진트리 #leetcode #파이썬 #python
- python #백준 #9375 #패션왕 #신해빈
- 2004 #조합 0의 개수 #백준
- leetcode #python #dfs #재귀
- dfs #leetcode #python #graph #그래프
- dfs #python #leetcode
- gcd #최대공약수 #백준 #2981 #검문
- context #android #getApplicationContext #activity #생명주기 #lifecycle
- dfs #leetcode #python
- 다익스트라 #dijkstra #leetcode #파이썬 #python #algorithm #787
- dfs #bfs #트리구조 #이진트리 #leetcode #python #파이썬
- dfs #bfs #leetcode #python
- dfs #그래프 #graph #python #leetcode #course #schedule
- 해시테이블 #heapq #파이썬 #리트코드 #알고리즘
- AsyncTask #doinbackground #스레드 #thread #android #안드로이드
- final #java #자바 #안드로이드
- 다익스트라 #알고리즘 #bfs #그리디 #다이나믹프로그래밍 #leetcode #python
- dfs #bfs #이진트리 #파이썬 #리트코드
- Python #leetcode #dfs #그래프 #백트래킹
- 백준 #파이썬 #bfs #백트래킹 #1697 #숨바꼭질
- leetcode #subsets #dfs #itertools #python
- dfs #python #leetcode #combination
Archives
- Today
- Total
목록팰린드롬 #코딩테스트 #파이썬 #러너 #데크 #알고리즘 #리트코드 (1)
멋진 개발자가 되고 싶다
[LeetCode] 234. 팰린드롬 연결 리스트(Palindrome Linked List)
연결 리스트가 팰린드롬 구조인지 판별하라 팰린드롬 : 이름을 거꾸로 뒤집어도 처음과 같은 문자. ex. 기러기, 미레미, anna 1. 내가 직접 푼 코드 1 2 3 4 5 6 7 8 9 class Solution: def isPalindrome(self, head: ListNode) -> bool: p_list = [] a = head while a.next is not None: p_list.append(a.val) a = a.next p_list.append(a.val) return p_list == p_list[::-1] cs 해설: 리스트 하나를 생성하고 연결 리스트의 값들을 일일히 리스트에 추가했다. 이렇게 하는 이유는 문제 특성상 앞과 뒤를 비교해야 하는데 연결 리스트는 원하는 위치를 자유롭..
Algorithm Study/leetcode
2021. 6. 30. 22:44