码迷,mamicode.com
首页 > 其他好文 > 详细

Datawhale编程实践(LeetCode 腾讯精选练习50)Task16

时间:2021-01-28 12:08:24      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:题目   rgba   self   type   练习   task   elf   __init__   复杂   

1.删除链表中的节点https://leetcode-cn.com/problems/delete-node-in-a-linked-list/

一开始没看清题目中传入的参数为“要被删除的节点”,找了半天链表在哪

 1 class ListNode:
 2     def __init__(self, x):
 3         self.val = x
 4         self.next = None
 5 
 6 class Solution:
 7     def deleteNode(self, node):
 8         """
 9         :type node: ListNode
10         :rtype: void Do not return anything, modify node in-place instead.
11         """
12         node.val = node.next.val
13         node.next = node.next.next

时间复杂度82%

 

 

2.除自身以外数组的乘积https://leetcode-cn.com/problems/product-of-array-except-self/

 

 

 

3.Nim游戏https://leetcode-cn.com/problems/nim-game/

 

Datawhale编程实践(LeetCode 腾讯精选练习50)Task16

标签:题目   rgba   self   type   练习   task   elf   __init__   复杂   

原文地址:https://www.cnblogs.com/zmbreathing/p/datawhale_leetcode_task16.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!