Given the radius and x-y positions of the center of a circle, write a function randPoint whic…
分类:LeetCode
[LeetCode] Reach a Number 达到一个数字
You are standing at position 0 on an infinite number line. There is a goal at position t…
LeetCode | Pascal's Triangle(杨辉三角)
Given numRows, generate the first numRows of Pascal’s triangle. For example, given n…
字谜分组
字谜分组 给定一个字符串数组,将字母异位词组合在一起。字母异位词指字母相同,但排列不同的字符串。 说明: 所有输入均为小写字母。 不考虑答案输出的顺序。 输入: ["eat", "tea", "tan", "ate", …
Leetcode 226. Invert Binary Tree
Invert a binary tree. 4 / 2 7 / \ / 1 3 6 9 to 4 / 7 2 / \ / 9 6 3 1 思路: 递归的翻转每个节点的左右子树,然后交换每个节点的左右子树。 public …
121. Best Time to Buy and Sell Stock
121. Best Time to Buy and Sell Stock 题目 Say you have an array for which the ith element is the price of a give…
[LeetCode] Lonely Pixel II 孤独的像素之二
Given a picture consisting of black and white pixels, and a positive integer N, find the number of blac…
[Leetcode] Edit Distance 最小编辑距离
Edit Distance Given two words word1 and word2, find the minimum number of steps required to convert word1 to w…
力扣(LeetCode)756
题目地址:https://leetcode-cn.com/probl…题目描述:给出集合 [1,2,3,…,n],其所有元素共有 n! 种排列。 按大小顺序列出所有排列情况,并一一标记,当 n = 3 时, …
0.每天一道算法题
缘起 工作老长时间了,每天基本都对着重复的业务逻辑在写不同的代码。每次找工作的时候,遇到算法的面试题就开始头疼,毕竟实际工作中很少用到。 但是,作为思维与逻辑测验的算法题在面试中必不可少;同时,有一定的算法思想对平时的工…
LeetCode算法题-Largest Number At Least Twice of Others(Java实现)
这是悦乐书的第308次更新,第328篇原创 01 看题和准备 今天介绍的是LeetCode算法题中Easy级别的第177题(顺位题号是747)。在给定的整数数组中,总有一个最大的元素。查找数组中的最大元素是否至少是数组中…
LeetCode算法题-Assign Cookies(Java实现)
这是悦乐书的第234次更新,第247篇原创 01 看题和准备 今天介绍的是LeetCode算法题中Easy级别的第101题(顺位题号是455)。假设你是一个很棒的父母,并想给你的孩子一些饼干。但是,你应该给每个孩子一个饼…