- 博客(7)
- 收藏
- 关注
原创 【LeetCode】25. K 个一组翻转链表 (Python)
作者: 安之若素4869 leetcode主页:https://leetcode-cn.com/u/an-zhi-ruo-su/ 题目地址 链接: 题目描述 hard todo 解题思路 efhg 代码 此处写代码 日期 2021-10-07 感想xxxx
2021-10-08 10:03:00 124
原创 【LeetCode】215. 数组中的第K个最大元素 (Python)
作者: 安之若素4869 leetcode主页:https://leetcode-cn.com/u/an-zhi-ruo-su/ 题目地址 链接:https://leetcode-cn.com/problems/kth-largest-element-in-an-array/ 题目描述 给定整数数组 nums 和整数 k,请返回数组中第 k 个最大的元素。 请注意,你需要找的是数组排序后的第 k 个最大的元素,而不是第 k 个不同的元素。 示例 1: 输入: [3,2,1,5,6,4] 和 k = 2 输出
2021-10-07 22:56:23 230
原创 【LeetCode】3. 无重复字符的最长子串 (Python)
作者: 安之若素4869 leetcode主页:https://leetcode-cn.com/u/an-zhi-ruo-su/ 题目地址 链接:https://leetcode-cn.com/problems/longest-substring-without-repeating-characters/ 题目描述 给定一个字符串 s ,请你找出其中不含有重复字符的 最长子串 的长度。 示例 1: 输入: s = “abcabcbb” 输出: 3 解释: 因为无重复字符的最长子串是 “abc”,所以其长度为
2021-10-07 22:50:22 154
原创 【LeetCode】146. LRU 缓存机制 (Python)
作者: 安之若素4869 leetcode主页:https://leetcode-cn.com/u/an-zhi-ruo-su/ 题目地址 链接:https://leetcode-cn.com/problems/lru-cache/ 题目描述 运用你所掌握的数据结构,设计和实现一个 LRU (最近最少使用) 缓存机制 。 实现 LRUCache 类: LRUCache(int capacity) 以正整数作为容量 capacity 初始化 LRU 缓存 int get(int key) 如果关键字 key
2021-10-07 22:45:04 306
原创 【LeetCode】206. 反转链表 (Python)
作者: 安之若素4869 leetcode主页:https://leetcode-cn.com/u/an-zhi-ruo-su/ 题目地址 链接:https://leetcode-cn.com/problems/reverse-linked-list 题目描述 给你单链表的头节点 head ,请你反转链表,并返回反转后的链表。 示例 1: 输入:head = [1,2,3,4,5] 输出:[5,4,3,2,1] 示例 2: 输入:head = [1,2] 输出:[2,1] 示例 3: 输入:head = [
2021-10-07 22:36:00 223
原创 flask项目部署时,Mysql在ubuntu18中 . Access denied for user 'root'@'localhost' (using password: YES)
密码问题,需要重置密码: 1. cd /etc/mysql/mysql.conf.d/ #找到文件所在目录,也有直接存储在/etc的:sudo vim /etc/my.cnf sudo vim mysqld.cnf update mysql.user set authentication_string=password(‘root’) where user=‘root’ ...
2019-07-04 19:35:41 502
原创 xshell6连接虚拟机Ubuntu18连接
1.VMware的编辑中的更改设置中添加网络VMnet0,设为桥接 2.在VMware虚拟机设置中的网络适配器中选择自定义VMnet0 3.xshell6连接设置时的用户名不能用root,之前用root一直显示密码错误,改为普通用户就可以登录了 4.网上很多人说需要设置linux系统的静态ip与本地windowsip在同一个段,就是两者ip最后的部分的0-255可以不同,其余都需要相同,ubunt...
2019-07-03 21:56:45 1022
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人