Given a non-negative integer N, find the largest number that is less than or equal to N …
分类:LeetCode
[Leetcode] String to Integer (atoi) 字符串转整数
String to Integer (atoi) Implement atoi to convert a string to an integer. Hint: Carefully consider all possib…
Leetcode PHP题解--D14 561. Array Partition I
561. Array Partition I 题目链接 561. Array Partition I 题目分析 本题给了一个数组,要求将数组分为n个只有2个元素的一对。 使得每对数字中最小的数加起来的和最大。 思路 首先…
LeetCode算法题-Isomorphic Strings(Java实现)
这是悦乐书的第191次更新,第194篇原创 01 看题和准备 今天介绍的是LeetCode算法题中Easy级别的第50题(顺位题号是205)。给定两个字符串s和t,确定它们是否是同构的。如果s中的字符可以替换为t,则两个…
LeetCode算法题-License Key Formatting(Java实现)
这是悦乐书的第241次更新,第254篇原创 01 看题和准备 今天介绍的是LeetCode算法题中Easy级别的第108题(顺位题号是482)。您将获得一个表示为字符串S的许可证密钥,该字符串仅包含字母数字字符和短划线。…
Leetcode之14-最长公共前缀(Longest Common Prefix)
前言 个人网站 公众号: 北京程序猿, 网站 : https://yaml.vip 算法题 题干 编写一个函数来查找字符串数组中的最长公共前缀。如果不存在公共前缀, 返回空字符串。 示例 示例 1: 输入: ["flow…
275. H-Index II
Given an array of citations sorted in ascending order (each citation is a non-negative integer) of a researche…
[Leetcode] Lowest Common Ancestor of a Binary Tree 最小公共祖先
Lowest Common Ancestor of a Binary Search Tree 最新更新请见:https://yanjia.me/zh/2019/02/… Given a binary sear…
【leetcode】39. Combination Sum 求整数数组里的等于指定值的所有子集
1. 题目 Given a set of candidate numbers (C) and a target number (T), find all unique combinations in C where th…
349. Intersection of Two Arrays
349. Intersection of Two Arrays 题目: https://leetcode.com/problems/intersection-of-two-arrays/ 难度: Easy Python一…
Subsets II解题报告
Description: Given a list of numbers that may has duplicate numbers, return all possible subsets Notice: Each …
网易笔试2018编程题
第一题 [编程题] 牛牛找工作 时间限制:2秒 空间限制:65536K 为了找到自己满意的工作,牛牛收集了每种工作的难度和报酬。牛牛选工作的标准是在难度不超过自身能力值的情况下,牛牛选择报酬最高的工作。在牛牛选定了自己的…