Given an n-ary tree, return the level order traversal of its nodes' values. Nary-Tree input serialization is represented in their level order traversa ...
分类:
其他好文 时间:
2020-07-10 11:20:42
阅读次数:
63
[JavaScript 中文开发手册arguments.@@iterator (Function) - JavaScript 中文开发手册@@iterator属性的初始值是和Array.prototype.values属性的初始值相同的对象。] 本文标题:arguments.@@iterator (... ...
分类:
编程语言 时间:
2020-07-09 12:11:16
阅读次数:
64
题目链接:https://codeforces.com/problemset/problem/687/C 题目大意:给你n个数,然后让这些数相加组合,然后在这些组合的数里可以再相加组合搞出给定 k,输出这些组合的数。 Examples Input 6 185 6 1 10 12 2 Output 1 ...
分类:
其他好文 时间:
2020-07-08 01:41:40
阅读次数:
87
创建一个表 CREATE TABLE 表名称 ( 列名称1 数据类型, 列名称2 数据类型, ....... ) 1、增 (1)插入元祖 INSERT INTO<表名>[(<属性列1>[,<属性列2>]...)] VALUES(<常量1>[,<常量2>]...); (2)插入子查询结果 INSERT ...
分类:
数据库 时间:
2020-07-07 18:09:19
阅读次数:
86
1、 导入mybatis相关依赖 <!-- spring-boot mabatis依赖 不要使用1.0.0版本,因为1.0.0版本还不支持拦截器插件 --> <dependency> <groupId>org.mybatis.spring.boot</groupId> <artifactId>myb ...
分类:
编程语言 时间:
2020-07-07 17:33:14
阅读次数:
67
这里记录过去一周,我看到的值得分享的东西。 长久以来,我一直用各种方式,尝试整理我的收藏夹。最近想到,把它写成文章,共享出来,也许效果更好。 语雀 语雀(yuque.com)是阿里巴巴集团内部最大的文档平台,也是阿里系知识管理和团队协作的主要工具之一。 今天(4月23日)是世界读书日,语雀选在今天放 ...
分类:
其他好文 时间:
2020-07-07 16:09:44
阅读次数:
80
1. 自己写for循环 从array里去掉$tmp这个元素的值 <?php $tmp = '324'; $arr = array( '0' => '321', '1' => '322', '2' => '323', '3' => '324', '4' => '325', '5' => '326', ...
分类:
编程语言 时间:
2020-07-07 13:20:47
阅读次数:
61
--每天记录DECLARE @start DATE,@end DATE SET @start='2020-7-1' SET @end='2020-7-20' select DATEADD(DAY,number,@start) ymd from master..spt_values where typ ...
分类:
数据库 时间:
2020-07-06 17:57:35
阅读次数:
152
翻看一些函数基础, 函数的本质, 接收任意参数 *args, **kwargs 和返回多个对象 ...
分类:
其他好文 时间:
2020-07-06 00:57:57
阅读次数:
115
package LeetCode_692 import java.util.* import kotlin.collections.ArrayList import kotlin.collections.HashMap /** * 692. Top K Frequent Words * https: ...
分类:
其他好文 时间:
2020-07-06 00:57:07
阅读次数:
61