寿司代码
weixin_43585219
这个作者很懒,什么都没留下…
展开
-
[leetcode]20有效括号
python: class Solution(object): def isValid(self, s): """ :type s: str :rtype: bool """ stack = [] lookup = { "(":")", "[":"...原创 2020-03-22 18:23:52 · 97 阅读 · 0 评论 -
[leetcode]58最后一个单词的长度
给定一个仅包含大小写字母和空格 ’ ’ 的字符串,返回其最后一个单词的长度。 如果不存在最后一个单词,请返回 0 。 说明:一个单词是指由字母组成,但不包含任何空格的字符串。 示例: 输入: “Hello World” 输出: 5 class Solution(object): def lengthOfLastWord(self, s): """ :type...原创 2019-11-04 21:15:41 · 79 阅读 · 0 评论 -
leetcode 35 搜索插入位置
普通循环解法 class Solution(object): def searchInsert(self, nums, target): """ :type nums: List[int] :type target: int :rtype: int """ i=0 while i...原创 2019-10-28 22:20:31 · 74 阅读 · 0 评论 -
[leetcode] 21. 合并两个有序链表
迭代方法 # Definition for singly-linked list. # class ListNode(object)://*定义链表*// # def __init__(self, x): # self.val = x # self.next = None class Solution(object): def mergeTwoLis...原创 2019-10-22 22:23:21 · 76 阅读 · 0 评论 -
codewars
codewars第一题答案 好久不写代码,居然忘记字符串的处理方式了 public class JadenCase { public String toJadenCase(String phrase) { if(phrase==null||phrase.length()==0){ return null; } char[] str...原创 2019-06-27 21:42:15 · 240 阅读 · 0 评论