Avatar notebook default
166篇文章 · 31514字 · 17人关注
  • LeetCode 277 [Find the Celebrity]

    原题 Suppose you are at a party with n people (labeled from 0 ton - 1) and...

  • LeetCode 361 [Bomb Enemy]

    原题 Given a 2D grid, each cell is either a wall 'W', an enemy 'E' or empt...

  • LeetCode 17 [Letter Combinations of a Phone Number]

    原题 给一个不包含01的数字字符串,每个数字代表一个字母,请返回其所有可能的字母组合。 下图的手机按键图,就表示了每个数字可以代表的字母。 样例...

  • LeetCode 171 [Excel Sheet Column Number]

    原题 Given a column title as appear in an Excel sheet, return its correspo...

  • LeetCode 298 [Binary Tree Longest Consecutive Sequence]

    原题 给一个二叉树,求其中最长连续序列的长度 样例比如,下面的树,最长序列为3->4->5,返回3 解题思路 递归求解,分别向左右子树递归,判断...

  • LeetCode 394 [Decode String]

    原题 给一段string,解码 样例 解题思路 一个stack记录倍数 一个stack记录string 遇到"["添加倍数(因为倍数可能是“12...

  • LeetCode 389 [Find the Difference]

    原题 给出两个字符串,只有一处不同,一个字符串比两一个多一个字符,找出这个字符 样例 解题思路 合并两个字符串,题目转化为寻找单身狗 完整代码

  • LeetCode 38 [Count and Say]

    原题 报数指的是,按照其中的整数的顺序进行报数,然后得到下一个数。如下所示:1, 11, 21, 1211, 111221, ...1 读作 "...

  • LeetCode 22 [Generate Parentheses]

    原题 给定 n 对括号,请写一个函数以将其生成新的括号组合,并返回所有组合结果。 样例给定 n = 3, 可生成的组合如下:"((()))", ...

文集作者