Maximum Subarray (E) 题目 Given an integer array nums, find the contiguous subarray (containing at least one number) which has the largest sum and retur ...
分类:
其他好文 时间:
2020-07-03 09:14:00
阅读次数:
76
总所周知,传参 或 使用变量给另一个变量赋值时,如果是基本数据类型(null,number,undefined,string,boolean)则是直接复制,但是如果是非基本数据类型(array,function,object等),则是复制对应的引用。 浅拷贝指的是只会复制第一层对象,但是当对象是引用 ...
分类:
其他好文 时间:
2020-07-03 01:18:19
阅读次数:
85
1、如何获取列表中第二大的值? #先去重,在排序,取值 lst = [1,2,3,4,5,5,5,5,5,5,5,5] setvar = set(lst) # 列表.sort 类型有局限性,只能是列表,基于原有列表进行修改 # sorted 容器类型数据皆可以,返回新列表 lst = sorted( ...
分类:
编程语言 时间:
2020-07-03 01:16:47
阅读次数:
81
数组中的重复数字 题目描述 Java代码 、import java.util.*; public class Solution { // Parameters: // numbers: an array of integers // length: the length of array numbe ...
分类:
编程语言 时间:
2020-07-03 01:09:01
阅读次数:
81
1、管理表 1.1基本存储单位,二维结构 --约定:每一列的数据,数据类型必须相同;列名是唯一的;每一行的数据也是唯一的,避免冗余 1.2表中数据类型 字符型:char(n) nchar(n) 固定长度 varchar2(n) nvarvchar2(n) 可变长长度 数值型:number(p,s) ...
分类:
数据库 时间:
2020-07-03 00:48:15
阅读次数:
65
Given a binary array, find the maximum number of consecutive 1s in this array. Example 1: Input: [1,1,0,1,1,1] Output: 3 Explanation: The first two di ...
分类:
其他好文 时间:
2020-07-02 23:22:50
阅读次数:
99
PTA 自测-4 Have Fun with Numbers 题目描述 Notice that the number 123456789 is a 9-digit number consisting exactly the numbers from 1 to 9, with no duplicati ...
分类:
其他好文 时间:
2020-07-02 23:22:19
阅读次数:
111
今天这篇文章跟大家分享一些JavaScript常用的API代码,内容太多,该篇只分享DOM操作。 下篇分享:CSS操作、对象(Object对象、Array对象、Number对象、String对象、Math对象、JSON对象和Console对象)操作,值得收藏。 JavaScript常用API合集汇总 ...
分类:
编程语言 时间:
2020-07-02 16:46:05
阅读次数:
63
上篇文章跟大家分享一些JavaScript常用的API代码,有DOM操作:https://www.cnblogs.com/caoru/p/13225082.html 今天分享一下CSS操作、对象(Object对象、Array对象、Number对象、String对象、Math对象、JSON对象和Con ...
分类:
编程语言 时间:
2020-07-02 16:36:28
阅读次数:
48
var type = function (o){ var s = Object.prototype.toString.call(o); return s.match(/\[object (.*?)\]/)[1].toLowerCase(); }; ['Null', 'Undefined', 'Obj ...
分类:
Web程序 时间:
2020-07-02 14:51:56
阅读次数:
111