leetcode234-Palindrome Linked List迴文鏈表(python)

法1:輔助數組,轉化爲數組問題。時間O(n),空間O(n) # Definition for singly-linked list. # class ListNode: # def __init__(self, x): # self.val = x # self.next = None class Solution: def isPalindrom
相關文章
相關標籤/搜索