1. install java is necessary as precondition. - download java (at least 1.8 version.) jdk download: http://www.oracle.com/technetwork/java/javase/down ...
分类:
其他好文 时间:
2018-01-16 14:07:09
阅读次数:
188
#week12 Given an unsorted array of integers, find the length of longest increasing subsequence. For example,Given [10, 9, 2, 5, 3, 7, 101, 18],The lon ...
分类:
其他好文 时间:
2018-01-13 11:02:51
阅读次数:
141
1、array_search() 判断键值是否在数组中,如存在,返回值对应的键; 反之,返回false; 例子: $type = array( "选考" => 'optional', "必考" => 'necessary', "其他" => 'other', ); $subject_type = a ...
分类:
编程语言 时间:
2017-12-28 19:51:15
阅读次数:
217
class int(object) | int(x=0) -> integer | int(x, base=10) -> integer | | Convert a number or string to an integer, or return 0 if no arguments | are g ...
分类:
编程语言 时间:
2017-12-28 19:43:12
阅读次数:
345
Returns the name of this enum constant,as contained in the declaratioin.This method may be overridden,though it typically isn't necessary or desirable ...
分类:
编程语言 时间:
2017-12-22 16:37:33
阅读次数:
152
1 //Include necessary Headers// 2 #include <windows.h> 3 4 //Define variables/constants// 5 LPCTSTR WndClassName = L"firstwindow"; //Define our window ...
import sys from _winreg import * # tweak as necessary version = sys.version[:3] installpath = sys.prefix regpath = "SOFTWARE\\Python\\Pythoncore\\%s\\... ...
分类:
编程语言 时间:
2017-12-15 00:44:29
阅读次数:
154
Under BIOS 1. System switched on - Power-on self-test or POST process 2. After POST, BIOS initializes the necessary system hardware for booting (disk, ...
分类:
移动开发 时间:
2017-12-11 18:41:18
阅读次数:
254
第18天课程内容: 模板语言的常用标签 自定义过滤器与标签 模板语言之继承 ORM的查询API 单表查询之双下划线 一对多的添加数据方法 mtv补充 修改pycharm连接db为mysql时遇到的问题 解决: 在项目的__init__.py文件中加 post提交表单数据时,默认会提示403 forb ...
分类:
编程语言 时间:
2017-11-17 13:37:21
阅读次数:
245
Given a set of non-overlapping intervals, insert a new interval into the intervals (merge if necessary). You may assume that the intervals were initia ...
分类:
其他好文 时间:
2017-11-12 11:01:14
阅读次数:
169