题意:给你一个数,判断该数是不是4的次幂( check whether it is a power of 4). 解题思路:是4的次幂的数依次是1,4,16,64,512… 转换成二进制就是 1:1 4:10…
标签:LeetCode
561. Array Partition I
题目地址:https://leetcode.com/submissions/detail/160916288/ 大意:把一个元素个数是2n的数组,分成n组,要求这n组里面比较小的数的和相加,最大。初一看,比较难理解。 (…
LeetCode算法题-Maximum Average Subarray I(Java实现)
这是悦乐书的第278次更新,第294篇原创 01 看题和准备 今天介绍的是LeetCode算法题中Easy级别的第146题(顺位题号是643)。给定由n个整数组成的数组,找到具有最大平均值的长度为k的连续子数组,并输出最…
287. 寻找重复数
287. 寻找重复数 问题 给定一个包含 个整数的数组 ,其数字都在 到 之间(包括 和 ),可知至少存在一个重复的整数。假设只有一个重复的整数,找出这个重复的数。 示例 1: 输入: 输出: 示例 2: 输入: 输出:…
[Leetcode] 003 Longest Substring Without Repeating Characters
Given a string, find the length of the longest substring without repeating characters. Examples: Given “…
[LeetCode][Two Pointers] 159. Longest Substring with At Most Two Distinct Characters
Problem More LeetCode Discussions Given a string, find the length of the longest substring T that contains at …
Leetcode之724-寻找数组的中心索引(Find Pivot Index)
前言 个人网站 公众号: 北京程序猿, 网站 : https://yaml.vip 算法题 题干 给定一个整数类型的数组 nums,请编写一个能够返回数组“中心索引”的方法。 我们是这样定义数组中心索引的:数组中心索引的…
LeetCode Remove Linked List Elements
Remove all elements from a linked list of integers that have value val. Example*****Given:* 1 –> 2 …
2012.9.15 Leetcode 258. Add Digits
Given a non-negative integer num, repeatedly add all its digits until the result has only one digit. For examp…
369. Plus One Linked List
369- Plus One Linked List **Question Editorial Solution My Submissions Total Accepted: 1189 Total Submissions:…
Leetcode295. Find Median from Data Stream
Straight-forward solution. O(n) space, O(1)(get) + O(nlogn)(sort the array before getting median) time solutio…
Java中的获取长度
Java语言也许是在设计之初有一点点没有完全计划好,导致各种不同的数据类型在获取长度的时候方法完全不同。相较于Python,几乎所有有长度的变量都可以用len()来获取长度。 String类 String test_st…