摘要:
2023年9月1日 【leetcode】2240. 买钢笔和铅笔的方案数 题意: 给你一个整数 total ,表示你拥有的总钱数。同时给你两个整数 cost1 和 cost2 ,分别表示一支钢笔和一支铅笔的价格。你可以花费你部分或者全部的钱,去买任意数目的两种笔。 请你返回购买钢笔和铅笔的 不同方案 阅读全文
摘要:
#### 2023年8月1日 【leetcode】[206. 反转链表](https://leetcode.cn/problems/reverse-linked-list/) 题意: > 给你单链表的头节点 `head` ,请你反转链表,并返回反转后的链表。 #### 2023年8月2日 【leet 阅读全文
摘要:
# LOAM ## 一、介绍 **LOAM: Lidar Odometry and Mapping in Real-time** > 2014, Robotics: Science and Systems 论文下载地址:http://www.roboticsproceedings.org/rss10 阅读全文
摘要:
## ESF ### Title标题 【2011 [ICRB](https://ieeexplore.ieee.org/document/6181760/)】ESF:Ensemble of Shape Functions for 3D Object Classification. 【[code](h 阅读全文
摘要:
#### 2023年7月1日 leetcode1. 两数之和 链接地址:https://leetcode.cn/problems/two-sum/ 题意: > 给定一个整数数组 `nums` 和一个整数目标值 `target`,请你在该数组中找出 **和为目标值** *`target`* 的那 ** 阅读全文
摘要:
#### 2023年6月1日 **leetcode2517. 礼盒的最大甜蜜度** 链接地址:https://leetcode.cn/problems/maximum-tastiness-of-candy-basket/ 题意: > 给你一个正整数数组 `price` ,其中 `price[i]` 阅读全文
摘要:
#### 2023年5月1日 leetcode1376. 通知所有员工所需的时间 链接地址:https://leetcode.cn/problems/time-needed-to-inform-all-employees/ 题意: > 公司里有 `n` 名员工,每个员工的 ID 都是独一无二的,编号 阅读全文
摘要:
2023年4月1日 leetcode831. 隐藏个人信息 链接地址:https://leetcode.cn/problems/masking-personal-information/ 题意: 给你一条个人信息字符串 s ,可能表示一个 邮箱地址 ,也可能表示一串 电话号码 。返回按如下规则 隐藏 阅读全文
摘要:
2023年3月1日 ~~leetcode2373. 矩阵中的局部最大值~~ 链接地址:https://leetcode.cn/problems/largest-local-values-in-a-matrix/ 题意: 给你一个大小为 n x n 的整数矩阵 grid 。 生成一个大小为 (n - 阅读全文
摘要:
2023年2月1日 ~~leetcode2325. 解密消息~~ 链接地址:https://leetcode.cn/problems/decode-the-message/ 题意: 给你字符串 key 和 message ,分别表示一个加密密钥和一段加密消息。解密 message 的步骤如下: 使用 阅读全文