SivanLaai
It will blossom finally.
添加功能: 1.文件管理:插件NerdTree 打开文件管理:Crtl + N 退出文件管理:Crtl + C 2.跳转功能:Ctags\pygments\
docker教程 docker安装 卸载老版本docker 1 sudo apt-get remove docker docker-engine docker.io containerd runc 设置apt仓库 1.更新apt包索引并且安装相关依赖允许apt使用ht
2021秋作业2-动态规划 1. Money robbing A robber is planning to rob houses along a street. Each house has a certain amount of money stashed, the only constraint stopping you from robbing each of them is that adjacent houses have security system connected and it will automatically contact the police if two adjacent houses were broken into on the same
2021秋作业2-动态规划 1. Money robbing A robber is planning to rob houses along a street. Each house has a certain amount of money stashed, the only constraint stopping you from robbing each of them is that adjacent houses have security system connected and it will automatically contact the police if two adjacent houses were broken into on the same
mysql数据库 mysql忘记密码 (1)修改配置文件免密 1 sudo vim /etc/mysql/my.cnf 1 2 [mysqld] skip-grant-tables (2)重启mysql 1 sudo service mysql restart (3)修改初始密码 1 2 3 mysql -u root use mysql; update user
2021秋作业1-分治 1. 找出整数数组中第K大的数 215.Kth Largest Element in an Array (Medium) Given an integer array nums and an integer k, please return the k-th largest element in the array. Your algorithm’s runtime complexity must be in the order of O(n),