文章作者:Tyan 博客:noahsnail.com | CSDN | 简书 1. Description 2. Solution class Solution { pub…
标签:LeetCode
LeetCode算法题-First Unique Character in a String(Java实现)
这是悦乐书的第213次更新,第226篇原创 01 看题和准备 今天介绍的是LeetCode算法题中Easy级别的第81题(顺位题号是387)。给定一个字符串,找到它中的第一个非重复字符并返回它的索引。 如果它不存在,则返…
3. 无重复字符的最长子串
题目内容 给定一个字符串,请你找出其中不含有重复字符的 最长子串 的长度。 示例 1: 输入: "abcabcbb" 输出: 3 解释: 因为无重复字符的最长子串是 "abc",所以其长度为 3。 示例 2: 输入: "…
Leetcode 78. Subsets
Given a set of distinct integers, nums, return all possible subsets. Note: The solution set must not contain d…
259. 3Sum Smaller
Given an array of n integers nums and a target, find the number of index triplets i, j, k with 0 <= i < …
LeetCode算法题-Valid Anagram(Java实现)
这是悦乐书的第198次更新,第205篇原创 01 看题和准备 今天介绍的是LeetCode算法题中Easy级别的第61题(顺位题号是242)。给定两个字符串s和t,写一个函数来确定t是否是s的anagram。例如: 输入…
448. Find All Numbers Disappeared in an Array
题目地址:https://leetcode.com/problems/find-all-numbers-disappeared-in-an-array/description/ 大意:给定一个整数数组,其中1 ≤ a[i…
Numbers of palindromic subsequence
Description: Find how many palindromic subsequence (need not necessarily be distinct) can be formed in a given…
[剑指offer] 左旋转字符串
本文首发于我的个人博客:尾尾部落 题目描述 汇编语言中有一种移位指令叫做循环左移(ROL),现在有个简单的任务,就是用字符串模拟这个指令的运算结果。对于一个给定的字符序列S,请你把其循环左移K位后的序列输出。例如,字符序…
340. Longest Substring with At Most K Distinct Characters
Given a string, find the length of the longest substring T that contains at most k distinct characters. For ex…
Leetcode - Random Pick Index
My code: public class Solution { int[] nums; int result = Integer.MAX_VALUE; Random r; public Solution(int[] n…
LeetCode[3] - LRU Cache
当李特第一次把这题拿出来的时候,我是慌的。 啥是LRU Cache啊? 接下去看吧。 后来,我很天真的来了一个O(n) 的解法,结果果然时间过多。天真解法很简单啊:一个map<key,value>存数值。一个…