摘要:
LeetCode58:https://leetcode-cn.com/problems/length-of-last-word/ 解题思路:利用字符串的内置函数 1 class Solution: 2 def lengthOfLastWord(self, s: str) -> int: 3 retu 阅读全文
摘要:
LeetCode35:https://leetcode-cn.com/problems/search-insert-position/ 解题思路:一种比较笨的方法,直接比较 # 先判断数字是否在给定的数组中 # 若在:遍历数组,找到该元素,并返回下标 # 若不在:遍历数组,比较大小,返回插入位置的索 阅读全文
摘要:
LeetCode28:https://leetcode-cn.com/problems/implement-strstr/submissions/ 解题思路:滑动窗法 1 class Solution: 2 def strStr(self, haystack: str, needle: str) - 阅读全文