Given an array nums and a target value k, find the maximum length of a subarray that sums to k. If there isn…
分类:LeetCode
922. 按奇偶排序数组 II
922. 按奇偶排序数组 II 问题 给定一个非负整数数组 , 中一半整数是奇数,一半整数是偶数。 对数组进行排序,以便当为奇数时,也是奇数;当 为偶数时,也是偶数。 你可以返回任何满足上述条件的数组作为答案。 示例: …
Leetcode 211. Add and Search Word - Data structure design
Design a data structure that supports the following two operations: void addWord(word) bool search(word) searc…
Leetcode 223. Rectangle Area
Find the total area covered by two rectilinear rectangles in a 2D plane. Each rectangle is defined by its bott…
LeetCode | Surrounded Regions
题目: Given a 2D board containing 'X' and 'O', capture all regions surrounded by 'X'. A regi…
[Leetcode] Find Median from Data Stream 数据流中位数
Data Stream Median 最新更新:https://yanjia.me/zh/2019/02/… Median is the middle value in an ordered integer …
LeetCode 97. Interleaving String Java实现代码
最近忙于工作,好久没有写博客了。上周六刷到LeetCode上的一道题,没有想出来,不甘心,两天来断断续续想了想,突然想出来使用动态规则可以解决!立刻动手写了代码,AC了。 代码放在GitHub上了:https://git…
LeetCode 292. Nim游戏
题目描述: 你和你的朋友,两个人一起玩 Nim游戏:桌子上有一堆石头,每次你们轮流拿掉 1 – 3 块石头。 拿掉最后一块石头的人就是获胜者。你作为先手。 你们是聪明人,每一步都是最优解。 编写一个函数,来判…
LeetCode算法题-Rotate Array(Java实现)
这是悦乐书的第184次更新,第186篇原创 01 看题和准备 今天介绍的是LeetCode算法题中Easy级别的第43题(顺位题号是189)。给定一个数组,将数组向右旋转k步,其中k为非负数。例如: 输入:[1,2,3,…
681. Next Closest Time
Medium Given a time represented in the format “HH:MM”, form the next closest time by reusing the c…
[LeetCode] Tenth Line 第十行
How would you print just the 10th line of a file? For example, assume that file.txt has the following c…
[LeetCode] Task Scheduler 任务行程表
Given a char array representing tasks CPU need to do. It contains capital letters A to Z where differen…