2023-12-23发表2023-12-23更新LeetCode每日一题几秒读完 (大约97个字)1962. 移除石子使总数最小1962. 移除石子使总数最小 难度: medium 原始链接: https://leetcode.cn/problems/remove-stones-to-minimize-the-total 标签: 优先队列 阅读更多
2023-12-20发表2023-12-20更新LeetCode每日一题1 分钟读完 (大约116个字)2828. 判别首字母缩略词2828. 判别首字母缩略词 难度: easy 原始链接: https://leetcode.cn/problems/check-if-a-string-is-an-acronym-of-words 标签: 模拟 阅读更多
2023-12-19发表2023-12-19更新LeetCode每日一题1 分钟读完 (大约172个字)1901. 寻找峰值 II1901. 寻找峰值 II 难度: medium 原始链接: https://leetcode.cn/problems/find-a-peak-element-ii 标签: 二分查找 阅读更多
2023-12-18发表2023-12-18更新LeetCode每日一题几秒读完 (大约70个字)162. 寻找峰值162. 寻找峰值 难度: medium 原始链接: https://leetcode.cn/problems/find-peak-element 标签: 二分查找 阅读更多
2023-12-17发表2023-12-17更新mongodb15 分钟读完 (大约2178个字)MongoDB 入门MongoDB 入门数据库shell12345678910111213# 查询所有数据库show databases; | show dsb;# 创建/切换到指定的数据库。如果数据库不存在任何集合,使用 `show dbs` 将不会展示该数据库 use [database]; # 创建(如果不存在)/切换到 test 数据库 use test;# 查询当前所在的数据库db# 删除当前数据库db.dropDatabase();阅读更多