background picture of the home page

Hello World

[81]搜索旋转排序数组 II

参考: https://leetcode-cn.com/problems/search-in-rotated-sorted-array-ii/solution/zai-javazhong-ji-bai-liao-100de-yong-hu-by-reedfan/ class Solution:

thumbnail of the cover of the post

Ubuntu挂载硬盘方法

参考: 命令行挂载 https://blog.csdn.net/wshixinshouaaa/article/details/81275608 Ubuntu 16.04 使用Disk图形化设置硬盘自动挂载 https://blog.csdn.net/kangear/article/details/8

thumbnail of the cover of the post

[2]两数相加

参考: https://leetcode-cn.com/problems/add-two-numbers/solution/liang-shu-xiang-jia-by-leetcode/ python泪流满面解法 需要考虑: 是否进位 如果算到某个为空,跳出后还要考虑进位是否还存在,如果还存在要继

thumbnail of the cover of the post

seaborn heatmap的初步学习

参考: https://www.jianshu.com/p/e195a09a8ca9 seaborn.heatmap(data, vmin=None, vmax=None, cmap=None, center=None, robust=False, annot=None, fmt='.2g', an

thumbnail of the cover of the post

折叠

参考: https://www.runoob.com/bootstrap/bootstrap-collapse-plugin.html 实例参考: https://www.runoob.com/try/try.php?filename=bootstrap3-plugin-collapse-accor

thumbnail of the cover of the post

history命令

history命令用于显示指定数目的指令命令,读取历史命令文件中的目录到历史命令缓冲区和将历史命令缓冲区中的目录写入命令文件。 该命令单独使用时,仅显示历史命令,在命令行中,可以使用符号!执行指定序号的历史命令。例如,要执行第2个历史命令,则输入!2。 历史命令是被保存在内存中的,当退出或者登录sh

thumbnail of the cover of the post

shell 清空文件内容

参考: https://blog.csdn.net/linuxwuj/article/details/84896933 | 方法 | 描述 | | —————————- | ———————————————————— | | vi 等文本编辑器 | 没啥说的,打开文件,删除内容后保存即可 | | ca

thumbnail of the cover of the post

sklearn通用学习模式

参考源码: https://github.com/MorvanZhou/tutorials/blob/master/sklearnTUT/sk4_learning_pattern.py 要点 Sklearn 把所有机器学习的模式整合统一起来了,学会了一个模式就可以通吃其他不同类型的学习模式。 例如,

thumbnail of the cover of the post

[1763]最长的美好子字符串

参考: https://leetcode-cn.com/problems/longest-nice-substring/solution/zui-chang-de-mei-hao-zi-zi-fu-chuan-by-l-4l1t/ import collections def check(s):

thumbnail of the cover of the post