It helps to understands how recursive calls works. So for our 'helper' function, when calling it, it stop there until when reach the end. one | two | ...
分类:
其他好文 时间:
2019-03-22 00:32:06
阅读次数:
118
https://www.cnblogs.com/haiyan123/p/7657151.html 一、jQuery基础1.为什么要用jquery? 写起来简单,省事,开发效率高,兼容性好2、什么是jQuery? jQuery是一个兼容多浏览器的JavaScript库(类似python里面的模块)3、 ...
分类:
Web程序 时间:
2019-03-19 18:24:00
阅读次数:
202
sys.exit 用于结束程序 2 from sys import exit 3 4 # 进入黄金房间后的逻辑 5 def gold_room(): 6 print("This room is full of gold. How much do you take?") 7 8 choice = in... ...
分类:
编程语言 时间:
2019-03-18 18:32:57
阅读次数:
220
智能等待,并忽略NoSuchElementException异常 PageLoadTimeout命令 目的:设置在抛出错误之前等待页面加载完成的时间。如果超时为负,则页面加载可能是无限期的。 SetScriptTimeout命令 用途:设置在抛出错误之前等待异步脚本完成执行的时间。如果超时为负,则允 ...
分类:
其他好文 时间:
2019-03-16 23:19:52
阅读次数:
175
*** Test Cases ***case1 #即使错误也继续执行,也不记录失败,且可以返回执行状态和错误信息 ${Run Keyword And Ignore Error status} ${statusValue} Run Keyword And Ignore Error Click Elem ...
分类:
其他好文 时间:
2019-03-13 10:55:15
阅读次数:
283
//2017-01:角谷猜想 //奇数3*N+1;偶数N/2 ;until N=1 #include static int count=0; int jiaogu(int num){ if(num==1||num==0){ return 0; }else if(num%2==0){ count++;... ...
分类:
其他好文 时间:
2019-03-12 10:36:40
阅读次数:
162
今天数据群有人反应网站不能正常打开,经检查Oracle数据库远程连不上,提示信息:ORA-00257: archiver error. Connect internal only, until freed。可能是archivelog满了。以前学习SQL只关注CRUD,对日志了解甚少,此次宕机虽然对生 ...
分类:
数据库 时间:
2019-03-07 14:25:29
阅读次数:
310
MATH4/60082 (Computational Finance)Assignment No. 1: Monte Carlo MethodsVersion 100900751 Background1.1 Stock OptionsConsider the equation for geometr ...
分类:
其他好文 时间:
2019-03-02 19:58:55
阅读次数:
129
在修改项目的版本号之后,如pom.xml中<version>1.2.0-SNAPSHOT</version>替换为<version>1.0.0-RELEASE</version>后,执行打包报错如下: 项目jar包是放在nexus上的,这是由于私服的更新策略导致的,nexus上的依赖库在更新库版本号 ...
分类:
其他好文 时间:
2019-02-23 01:07:00
阅读次数:
1161
https://leetcode.com/problems/add-digits/ Given a non-negative integer num, repeatedly add all its digits until the result has only one digit. Example ...
分类:
其他好文 时间:
2019-02-21 00:09:33
阅读次数:
139