美文网首页
2021-07-26leetcode刷题

2021-07-26leetcode刷题

作者: Cipolee | 来源:发表于2021-07-27 02:43 被阅读0次

    输入一个链表的头节点,从尾到头反过来返回每个节点的值(用数组返回)。
    示例 1:
    输入:head = [1,3,2]
    输出:[2,3,1]

    class Solution:
        def reversePrint(self, head: ListNode) -> List[int]:
            if head==None:
                return []
            else:
                t=self.reversePrint(head.next)
                t.append(head.val)
                return t
    
    

    相关文章

      网友评论

          本文标题:2021-07-26leetcode刷题

          本文链接:https://www.haomeiwen.com/subject/byigmltx.html