Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- programmers
- 캐치카페
- 파이썬
- ubuntu
- 프로그래머스 파이썬
- gs25
- 프로그래머스
- 편스토랑 우승상품
- SW Expert Academy
- 코로나19
- leetcode
- Real or Not? NLP with Disaster Tweets
- PYTHON
- 금융문자분석경진대회
- 더현대서울 맛집
- 백준
- ChatGPT
- dacon
- Git
- AI 경진대회
- 편스토랑
- 맥북
- Kaggle
- 데이콘
- 우분투
- Baekjoon
- Docker
- 자연어처리
- hackerrank
- github
Archives
- Today
- Total
솜씨좋은장씨
[leetCode] 234. Palindrome Linked List (Python) 본문
728x90
반응형
Given a singly linked list, determine if it is a palindrome.
Example 1:
Input: 1->2
Output: false
Example 2:
Input: 1->2->2->1
Output: true
Follow up:
Could you do it in O(n) time and O(1) space?
Solution
# Definition for singly-linked list.
# class ListNode:
# def __init__(self, val=0, next=None):
# self.val = val
# self.next = next
class Solution:
def isPalindrome(self, head: ListNode) -> bool:
my_list = []
while head != None:
val = head.val
my_list.append(val)
head = head.next
if my_list == my_list[::-1]:
return True
return False
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[leetCode] 374. Guess Number Higher or Lower (Python) (0) | 2020.10.02 |
---|---|
[leetCode] 190. Reverse Bits (Python) (0) | 2020.10.01 |
[leetCode] 203. Remove Linked List Elements (Python) (0) | 2020.09.29 |
[leetCode] 1417. Reformat The String (Python) (0) | 2020.09.28 |
[leetCode] 1051. Height Checker (Python) (0) | 2020.09.27 |
Comments