Given two words (beginWord and endWord), and a dictionary’s word list, find all shortest transformation …
标签:LeetCode
LeetCode刷题之Remove Element
Problem Do not allocate extra space for another array, you must do this in place with constant memory. The ord…
LeetCode 75. Sort Colors
Given an array with n objects colored red, white or blue, sort them so that objects of the same color are adja…
927. 三等分 // go语言实现
题目 给定一个由 0 和 1 组成的数组 A,将数组分成 3 个非空的部分,使得所有这些部分表示相同的二进制值。 如果可以做到,请返回任何 [i, j],其中 i+1 < j,这样一来: A[0], A[1], &…
Leetcode144——Binary Tree Preorder Traversal
文章作者:Tyan 博客:noahsnail.com | CSDN | 简书 1. 问题描述 Given a binary tree, return the preorde…
567. 字符串的排列
567. 字符串的排列 问题 给定两个字符串 和 ,写一个函数来判断 是否包含 的排列。 换句话说,第一个字符串的排列之一是第二个字符串的子串。 示例1: 输入: 输出: 解释: 包含 的排列之一 . 示例2: 输入: …
[Leetcode]13. 罗马数字转整数
罗马数字包含以下七种字符: I, V, X, L,C,D 和 M。 字符 数值 I 1 V 5 X 10 L 50 C 100 D 500 M 1000 例如, 罗马数字 2 写做 II ,即为两个并列的 1。12 写做…
力扣(LeetCode)-134 加油站
本题考察的是最大子序列和 题目描述 在一条环路上有 N 个加油站,其中第 i 个加油站有汽油 gas[i] 升。 你有一辆油箱容量无限的的汽车,从第 i 个加油站开往第 i+1 个加油站需要消耗汽油 cost[i] 升。…
2016.8.3 Leetcode (C++, Xcode)(1)344. Reverse String
因为一直写的都是android程序,所以之前想用java文件去提交,弄了半天android studio,终于将java程序运行了起来,可是一查,却发现java运行效率是c语言的三分之一。 OK,开始查刷OJ用什么语言比…
771. Jewels and Stones
题目网址:https://leetcode.com/problems/jewels-and-stones/description/ 大意:就是定义一个String J,这个String里面的每个character都是一种…
n刷100. Same Tree
Easy 反正不记得第几次做了,树的题除了考divide and conquer或者recursion到底还能考什么? /** * Definition for a binary tree node. * public …
647. 回文子串
这道题目和求解最长回文子串的题目是一样的框架结构, 不同的地方在于这到题目统计的是总数. class Solution(object): def countSubstrings(self, s): """ :type s…