240 发简信
IP属地:山东
  • 14. Longest Common Prefix

    题目地址:https://leetcode.com/problems/longest-common-prefix/思路:先遍历一遍,确定最小的字...

  • 13. Roman to Integer

    题目地址:https://leetcode.com/problems/roman-to-integer/思路:从左到右遍历,把当前字符对应数字累...

  • 9. Palindrome Number

    题目地址:https://leetcode.com/problems/palindrome-number/思路:把前一半和后一半一一做对比,特殊...

  • 7. Reverse Integer

    题目地址:https://leetcode.com/problems/reverse-integer/思路:把int转为字符串,字符串反转后再转...

  • 1. Two Sum

    题目地址:https://leetcode.com/problems/two-sum/思路1:双重循环遍历 分析:思路很直接,容易想到,容易编写...

  • rsync - 文件拷贝工具

    用法:rsync [OPTION]... SRC [SRC]... DEST 自己经常用scp,突然发现无法排除一个子目录,而rsync命令可以...

  • shell脚本切换cuda版本

    ubuntu16.04 LTS 上有cuda8.0和cuda9.0两个版本,因为需要切换使用,所以写了一个shell脚本方便快速切换.bashr...

  • Resize,w 360,h 240
    Mac matplotlib中文显示乱码

    中文标题出现类似如下的乱码: 解决方法:找到字体册 右键单击可以查看在Finder中的位置,然后在代码中指定字体即可(下面仅给出关键代码) 效果图:

  • 编写ls命令-第1版

    查看帮助$ man -k direct | grep read$ man 3 opendir$ man 3 readdir$ man 3 clo...