摘要: 1.反转字符串https://leetcode-cn.com/problems/reverse-string/ 一开始没想到,看了解答才恍然大悟原来这么简单 双指针法 1 class Solution: 2 def reverseString(self, s: List[str]) -> None: 阅读全文
posted @ 2021-01-27 21:34 zmbreathing 阅读(93) 评论(0) 推荐(0) 编辑
摘要: 1.删除链表中的节点https://leetcode-cn.com/problems/delete-node-in-a-linked-list/ 一开始没看清题目中传入的参数为“要被删除的节点”,找了半天链表在哪 1 class ListNode: 2 def __init__(self, x): 阅读全文
posted @ 2021-01-27 21:24 zmbreathing 阅读(65) 评论(0) 推荐(0) 编辑
摘要: 1.2的幂https://leetcode-cn.com/problems/power-of-two/ 我的想法是不停地除以2,直到不能整除,最终为1则返回True,否则返回False 时间复杂度48% 1 class Solution: 2 def isPowerOfTwo(self, n: in 阅读全文
posted @ 2021-01-27 16:01 zmbreathing 阅读(93) 评论(0) 推荐(0) 编辑