class Solution(object): def canPartition(self, nums): """ :type nums: List[int] :rtype: bool """ # guard phase…
标签:LeetCode
Day16.Student Attendance Record I(551)
问题描述 You are given a string representing an attendance record for a student. The record only contains the foll…
LeetCode[8] - Excel Sheet Column Number
好久以前做的一个题了。 记得:’A’ – ‘A’ = 0 呀。所以 any char – ‘A’ + 1 = 这个char在…
leetCode 198
问题 You are a professional robber planning to rob houses along a street. Each house has a certain amount of mon…
LeetCode算法题-K-diff Pairs in an Array(Java实现)
这是悦乐书的第254次更新,第267篇原创 01 看题和准备 今天介绍的是LeetCode算法题中Easy级别的第121题(顺位题号是532)。给定一个整数数组和一个整数k,您需要找到数组中唯一的k-diff对的数量。 …
LeetCode从零刷起 (9. Palindrome Number)
LeetCode(9. Palindrome Number) Determine whether an integer is a palindrome. Do this without extra space. clic…
[LintCode][System Design] Inverted Index
Problem Create an inverted index with given documents. Example Given a list of documents with id and content. …
LeetCode算法题-Design HashSet(Java实现)
这是悦乐书的第298次更新,第317篇原创 01 看题和准备 今天介绍的是LeetCode算法题中Easy级别的第166题(顺位题号是705)。不使用任何内建的hash表库设计一个hash集合,应包含以下功能: add(…
LeetCode算法题-Student Attendance Record I(Java实现)
这是悦乐书的第258次更新,第271篇原创 01 看题和准备 今天介绍的是LeetCode算法题中Easy级别的第125题(顺位题号是551)。您将获得一个表示学生出勤记录的字符串。 该记录仅包含以下三个字符: R…
Leetcode之523-连续的子数组和(Continuous Subarray Sum)
前言 个人网站 公众号: 北京程序猿, 网站 : https://yaml.vip 算法题 题干 给定一个包含非负数的数组和一个目标整数k, 编写一个函数来判断该数组是否含有连续的子数组, 其大小至少为2, 总和为k的倍…
Leetcode - Bitwise AND of Numbers Range
My code: public class Solution { public int rangeBitwiseAnd(int m, int n) { int i = 1; while (m != n) { m >…
Leetcode 42. Trapping Rain Water
Given n non-negative integers representing an elevation map where the width of each bar is 1, compute how much…