这是悦乐书的第209次更新,第221篇原创 01 看题和准备 今天介绍的是LeetCode算法题中Easy级别的第77题(顺位题号是367)。给定正整数num,写一个函数,如果num是一个完美的正方形,则返回True,否…
分类:LeetCode
270. Closest Binary Search Tree Value
/* * 270. Closest Binary Search Tree Value Total Accepted: 13710 Total Submissions: 39124 Difficulty: Easy Giv…
[LeetCode By Go 82]198. House Robber
题目 You are a professional robber planning to rob houses along a street. Each house has a certain amount of mon…
[LeetCode] Remove Boxes 移除盒子
Given several boxes with different colors represented by different positive numbers. You may exper…
[LeetCode] Longest Continuous Increasing Subsequence 最长连续递增序列
Given an unsorted array of integers, find the length of longest continuous increasing subsequ…
LeetCode | Insert Interval
题目: Given a set of non-overlapping intervals, insert a new interval into the intervals (merge if nec…
[Algo] Longest Descending Path 滑雪问题
Longest Descending Path 给出一个矩阵,求矩阵中从某个点开始,最长的下降路径。路径可以走上下左右四个方向。求最长路径的长度。 1 2 3 4 5 6 7 8 其中一条最长路径是8 7 6 5 1 记…
128.旋转数组
一、题目原型: 给定一个数组,将数组中的元素向右移动 k 个位置,其中 k 是非负数。 说明: 尽可能想出更多的解决方案,至少有三种不同的方法可以解决这个问题。 要求使用空间复杂度为 O(1) 的原地算法。 二、题目意思…
LeetCode算法题-Array Partition I(Java实现)
这是悦乐书的第262次更新,第275篇原创 01 看题和准备 今天介绍的是LeetCode算法题中Easy级别的第129题(顺位题号是561)。给定一个2n个整数的数组,你的任务是将这些整数分组为n对整数,比如说(a1,…
Leetcode - Add Strings
My code: public class Solution { public String addStrings(String num1, String num2) { StringBuilder sb = new S…
75. 寻找峰值
题目 75. 寻找峰值 你给出一个整数数组(size为n),其具有以下特点: 相邻位置的数字是不同的 A[0] < A[1] 并且 A[n - 2] > A[n - 1] 假定P是峰值的位置则满足A[P] &…
110. Balanced Binary Tree
欢迎fork and star:Nowcoder-Repository-github 110. Balanced Binary Tree 题目 Given a binary tree, determine if it i…