Leetcode.283 Move Zeroes Given an array nums, write a function to move all 0's to the end of it while maintaining the relative order of the non-zero e ...
分类:
编程语言 时间:
2020-07-28 14:38:35
阅读次数:
91
1.let <script> //1.声明变量 let a; let b,c,d; let e =100; let f=521,g='iloveyou',h=[]; //2.let变量不能重复定义 例 // let peope = 'bill' // let peope = 'jom' //会报错: ...
分类:
其他好文 时间:
2020-07-26 19:49:20
阅读次数:
86
forEachRemaining()是java1.8新增的Iterator接口中的默认方法对于这个方法,官方文档是这么描述的:Performs the given action for each remaining element until all elements have been proce ...
分类:
其他好文 时间:
2020-07-26 00:20:40
阅读次数:
200
1.if 语句 object Test { def main(args: Array[String]) { var x = 10; if( x < 20 ){ println("x < 20"); } } } 结果 x < 20 2.if...else 语句 object Test { def ma ...
分类:
其他好文 时间:
2020-07-25 23:59:03
阅读次数:
120
通过xpath定位所有的 包含‘设’的所有文本 的元素 titles = driver.find_elements_by_xpath("//*[contains(@text,'设')]")#显示titles中包含‘设’的所有文本for title in titles: print("这是title: ...
分类:
移动开发 时间:
2020-07-24 21:14:02
阅读次数:
86
1.“==”与equals的区别 == 是引用是否相等,equals是内容相等 Integer a = new Integer(1); Integer b = new Integer(1); if (a = b)... //错误 if(a.equals(b))... //正确 public clas ...
分类:
编程语言 时间:
2020-07-22 20:55:48
阅读次数:
80
Given an array nums of n integers where n > 1, return an array output such that output[i] is equal to the product of all the elements of nums except n ...
分类:
其他好文 时间:
2020-07-22 15:50:36
阅读次数:
67
通过 html,css,javascript原生实现打砖块小游戏,介绍了实现方法以及核心原理。 ...
分类:
其他好文 时间:
2020-07-22 11:14:23
阅读次数:
126
除按钮外禁用所有表单项 $(function () { $("form").each(function (i, form) { for (var i = 0; i < form.length; i++) { var element = form.elements[i]; if (element.no ...
分类:
其他好文 时间:
2020-07-22 02:07:26
阅读次数:
82
来自 《Python项目案例开发从入门到实战》(清华大学出版社 郑秋生 夏敏捷主编)中爬虫应用——抓取百度图片 想要爬取指定网页中的图片主要需要以下三个步骤 (1)指定网站链接,抓取该网站的源代码(如果使用goole浏览器就是按下鼠标右键 -> Inspect-> Elements 中的 html ...
分类:
编程语言 时间:
2020-07-21 22:19:42
阅读次数:
108