Word Search I 更新的思路与解法请访问:https://yanjia.me/zh/2018/11/… Given a 2D board and a word, find if the word e…
分类:LeetCode
286. Walls and Gates
Problem You are given a m x n 2D grid initialized with these three possible values. -1 – A wall or an ob…
[剑指offer] 数组中出现次数超过一半的数字
本文首发于我的个人博客:尾尾部落 题目描述 数组中有一个数字出现的次数超过数组长度的一半,请找出这个数字。例如输入一个长度为9的数组{1,2,3,2,2,2,5,4,2}。由于数字2在数组中出现了5次,超过数组长度的一半…
[LeetCode] Power of Three 判断3的次方数
Given an integer, write a function to determine if it is a power of three. Example 1: Input: 27 Output:…
[Leetcode] Remove Element 删除数组元素
Remove Element Given an array and a value, remove all instances of that value in place and return the new leng…
【leetcode】77. Combinations C(n,k)的所有组合形式
1. 题目 Given two integers n and k, return all possible combinations of k numbers out of 1 … n. For exampl…
LeetCode | Convert Sorted List to Binary Search Tree(链表转换成二叉搜索树)
Given a singly linked list where elements are sorted in ascending order, convert it to a height balanced BST. …
字符流中第一个不重复的字符
题目描述 请实现一个函数用来找出字符流中第一个只出现一次的字符。例如,当从字符流中只读出前两个字符”go”时,第一个只出现一次的字符是”g”。当从该字符流中读出前六个字…
696. Count Binary Substrings
题目地址:https://leetcode.com/problems/count-binary-substrings/description/ 大意:给定一个二进制数字构成的字符串,看有多少个包含0和1数目相同的子字符串…
[剑指offer] 翻转单词顺序列
本文首发于我的个人博客:尾尾部落 题目描述 牛客最近来了一个新员工Fish,每天早晨总是会拿着一本英文杂志,写些句子在本子上。同事Cat对Fish写的内容颇感兴趣,有一天他向Fish借来翻看,但却读不懂它的意思。例如,“…
547. Friend Circles
Medium There are N students in a class. Some of them are friends, while some are not. Their friendship is tran…
岛屿的个数
给定一个由 ‘1’(陆地)和 ‘0’(水)组成的的二维网格,计算岛屿的数量。一个岛被水包围,并且它是通过水平方向或垂直方向上相邻的陆地连接而成的。你可以假设网格的四个边均被…