力扣刷题day3——回文链表

力扣刷题day3——回文链表_第1张图片

遍历链表,存入数组操作

class Solution:
    def isPalindrome(self, head: ListNode) -> bool:
        val = []
        node = head
        while node != None:
            val.append(node.val)
            node = node.next
        return val == val[::-1]

你可能感兴趣的:(链表,leetcode,数据结构)