给定一个由 ‘1’(陆地)和 ‘0’(水)组成的的二维网格,计算岛屿的数量。一个岛被水包围,并且它是通过水平方向或垂直方向上相邻的陆地连接而成的。你可以假设网格的四个边均被…
标签:LeetCode
217. 存在重复元素
一、题目原型: 给定一个整数数组,判断是否存在重复元素。 如果任何值在数组中出现至少两次,函数返回 true。如果数组中每个元素都不相同,则返回 false。 二、题目意思剖析: 示例 1: 输入: [1,2,3,1] …
[LeetCode][BFS] 317. Shortest Distance from All Buildings
Problem More LeetCode Discussions You want to build a house on an empty land which reaches all buildings in th…
2018-05-11 507. Perfect Number
题意:给你一个数,判断是不是回文数。回文数:一个数从左读和从右读一样(注:最好不要将int转换为string)。 解题思路: 先判断该数是不是负数,如果是负数返回false; 思路一、可以使用一个map将位置与该位置的数…
Leetcode - Power of Three
My code: public class Solution { public boolean isPowerOfThree(int n) { return n > 0 && Math.pow(3,…
[array] leetCode-11. Container With Most Water-Medium
leetCode-11. Container With Most Water-Medium descrition Given n non-negative integers a1, a2, …, an, wh…
[LintCode][System Design] Rate Limiter
Problem Implement a rate limiter, provide one method: is_ratelimited(timestamp, event, rate, increment). times…
剑指offer(五)用两个栈模拟队列
写在前面: 为了增长一下自己的数据结构能力,也为了面试准备,准备将剑指Offer做一下,并与各位分享,希望各位可以对代码以及思路提提建议,欢迎志同道合者,谢谢。 题目: 用两个栈来实现一个队列,完成队列的Push和Pop…
Leetcode 139. Word Break
Given a non-empty string s and a dictionary wordDict containing a list of non-empty words, determine if s can …
Day6. Add Digits(258)
最难忘记的一道, 问题描述 Given a non-negative integer num, repeatedly add all its digits until the result has only one di…
Day19. Complex Number Multiplication(537)
问题描述 Given two strings representing two complex numbers. You need to return a string representing their multip…
2. 两数相加(AddTwoNumbers)
上一篇:1.TwoSum(两数之和) 题目(Medium) You are given two non-empty linked lists representing two non-negative integers.…