Leetcode_回文链表(探索初级算法--python)

请判断一个链表是否为回文链表。

示例 1:

输入: 1->2
输出: false
示例 2:

输入: 1->2->2->1
输出: true

# Definition for singly-linked list.
# class ListNode:
#     def __init__(self, x):
#         self.val = x
#         self.next = None

class Solution:
    def isPalindrome(self, head: ListNode) -> bool:
        p=head
        ans=[]
        while p:
            ans.append(p.val)
            p=p.next
        if ans==ans[::-1]:
            return True
        return False

你可能感兴趣的:(leetcode)