background picture of the home page

Hello World

[119]杨辉三角 II

package T119杨辉三角II; import java.util.LinkedList; import java.util.List; public class Solution { public List<Integer> getRow(int rowIndex) {

thumbnail of the cover of the post

flask:hello world

https://github.com/snjl/python.flask.helloworld.git flask优点 Flask确实很“轻”,不愧是Micro Framework,从Django转向Flask的开发者一定会如此感慨,除非二者均未深入使用过 Flask自由、灵活,可扩展性强,第三方库

thumbnail of the cover of the post

面试题 05.06. 整数转换

参考: https://leetcode-cn.com/problems/convert-integer-lcci/solution/javazhi-jie-yi-huo-pythonxu-yao-dui-fu-shu-te-shu-/ class Solution: def convert

thumbnail of the cover of the post

JavaScript random() 方法

参考: https://www.runoob.com/jsref/jsref-random.html 返回介于 0(包含) ~ 1(不包含) 之间的一个随机数: Math.random(); 如果要获取1-10的一个随机数 Math.floor((Math.random()*10)+1); 以下

thumbnail of the cover of the post

scrapy:日志处理

Scrapy生成的调试信息非常有用,但是通常太啰嗦,你可以在Scrapy项目中的setting.py中设置日志显示等级: LOG_LEVEL = 'ERROR' 表示只有error的日志会显示。 日志级别 Scrapy日志有五种等级,按照范围递增顺序排列如下:(注意《Python网络数据采集》书中

thumbnail of the cover of the post

[62.]不同路径

参考: https://www.bilibili.com/video/BV1xb411e7ww?from=search&seid=3583354050846480873 package T62不同路径; public class Solution { public int uniquePa

thumbnail of the cover of the post