这是悦乐书的第187次更新,第189篇原创 01 看题和准备 今天介绍的是LeetCode算法题中Easy级别的第46题(顺位题号是198)。你是一个专业的强盗,计划在街上抢劫房屋。 每个房子都藏着一定数量的钱,阻止你抢…
分类:LeetCode
Leetcode128——Longest Consecutive Sequence
文章作者:Tyan 博客:noahsnail.com | CSDN | 简书 1. 问题描述 Given an unsorted array of integers, fi…
160. Intersection of Two Linked Lists
Easy Write a program to find the node at which the intersection of two singly linked lists begins. For example…
2018-06-07 458. Poor Pigs
题意:给你一些数量的桶buckets,已知某一个桶里有毒药,猪在喝了毒药后一定时间内minutesToDie会死亡,给一个规定时间minutesToTest,问最少需要多少猪才能唯一确定毒药在哪个桶里。 解题思路:开始的…
445. 两数相加 II
工程之美 什么样的工程是美的: 可维护 可读性 可扩展性 如果链表的长度不是特别恐怖的情况下, 这个栈的方案是非常有价值的. 易懂是第一点, 有了问题也能及时排查到. 使用栈来解决问题 # Definition for …
[LeetCode By Go 79]27. Remove Element
题目 Given an array and a value, remove all instances of that value in place and return the new length. Do not a…
12. Integer to Roman
12. Integer to Roman 题目 Given an integer, convert it to a roman numeral. Input is guaranteed to be within the …
[LeetCode] Redundant Connection II 冗余的连接之二
In this problem, a rooted tree is a directed graph such that, there is exactly one node (the …
[Leetcode] Add Binary 二进制相加
Add Binary Given two binary strings, return their sum (also a binary string). For example, a = “11”…
Leetcode之560-和为K的子数组(Subarray Sum Equals K)
前言 个人网站 公众号: 北京程序猿, 网站 : https://yaml.vip 算法题 题干 给定一个整数数组和一个整数 k,你需要找到该数组中和为 k 的连续的子数组的个数 示例 输入: nums = [1,1,1…
2018-07-03 48. Rotate Image
题意:给你一个n * n的数组表示一个图像,将图像向右顺时针旋转90度。 解题思路: 先将该图像按照正对角线对折,然后再左右对折。 /* * clockwise rotate * first reverse up to …
127. Word Ladder
欢迎fork and star:Nowcoder-Repository-github 127. Word Ladder 题目 Given two words (beginWord and endWord), and a …