time模块 和时间相关的功能模块。 1,时间戳时间 2,格式化时间 3,结构化时间 不同格式时间之间的转换。 ...
分类:
编程语言 时间:
2018-01-13 20:01:49
收藏:
0 评论:
0 赞:
0 阅读:
225
已经入职两周了,慢慢开始熟悉了公司的业务与人员... 知道自己是被分配到了PAD组,刚开始入职第一周的时候还以为自己时做前端方向的工作,也跟着杨欣姐做了一些小bug的排除,由于自己业务不熟悉,所以速度比较慢。终于跟上以后才发现自己是被分配在PAD组中,下周可能就要接一些PAD组的正式任务了。公司用的 ...
分类:
其他 时间:
2018-01-13 20:01:15
收藏:
0 评论:
0 赞:
0 阅读:
210
本文介绍两种用于判断变量类型的方式。 方法一 output: v1 type:string v2 type:int 方法二 output: v1 type:string v2 type:int ...
分类:
其他 时间:
2018-01-13 20:00:56
收藏:
0 评论:
0 赞:
0 阅读:
148
Given a singly linked list, return a random node's value from the linked list. Each node must have the same probability of being chosen. Follow up:Wha ...
分类:
其他 时间:
2018-01-13 20:00:37
收藏:
0 评论:
0 赞:
0 阅读:
225
题目链接: http://acm.hdu.edu.cn/showproblem.php?pid=5527 题意&题解: 感觉自己真是弱啊,自己想的贪心是错的,根本没想到20,50的特判,╮(╯▽╰)╭ 附我參考的聚聚的题解: http://blog.csdn.net/snowy_smile/arti ...
分类:
其他 时间:
2018-01-13 19:59:13
收藏:
0 评论:
0 赞:
0 阅读:
213
当登入到mongoDB 之后 可以使用help 命令查看帮助文档 系统级帮助文档 > help db.help() help on db methods # 数据库级别帮助文档 db.mycoll.help() help on collection methods # 集合级别帮助文档 sh.hel ...
分类:
数据库技术 时间:
2018-01-13 19:58:56
收藏:
0 评论:
0 赞:
0 阅读:
195
最近在 review 代码时发现同事没有像其他项目那样使用 AutoMapper.Mapper.Initialize() 静态方法配置映射,而是使用了依赖注入 IMapper 接口的方式。于是趁机学习了解一下,在 github 上发现了 AutoMapper.Extensions.Microsoft... ...
分类:
移动平台 时间:
2018-01-13 19:58:23
收藏:
0 评论:
0 赞:
0 阅读:
1093
mongoDB 常用的条件操作符有 $lt 小于 $gt 大于 $lte 小于或等于 $gte 大于或等于 $ne 不等于 $in in 判断用于判断元素是否在数组里面 $nin not in 判断用于判断元素是不是不在数组里面 $or 或判断 > db.tianyc02.find() { "_id ...
分类:
数据库技术 时间:
2018-01-13 19:56:09
收藏:
0 评论:
0 赞:
0 阅读:
218
在牛客网看到有人总结的,感觉写的不错,记录一下。 大多数 JVM 将内存区域划分为 Method Area(Non-Heap)(方法区) ,Heap(堆) , Program Counter Register(程序计数器) , VM Stack(虚拟机栈,也有翻译成JAVA 方法栈的),Native ...
分类:
其他 时间:
2018-01-13 19:55:36
收藏:
0 评论:
0 赞:
0 阅读:
266
Given a binary search tree and the lowest and highest boundaries as L and R, trim the tree so that all its elements lies in [L, R] (R >= L). You might ...
分类:
其他 时间:
2018-01-13 19:54:34
收藏:
0 评论:
0 赞:
0 阅读:
237
1)基本语法介绍: 或者 我还可以这样写: ...
分类:
其他 时间:
2018-01-13 19:53:44
收藏:
0 评论:
0 赞:
0 阅读:
205
用户和权限基本概念;组概念;ls -l 详解;chmod命令; ...
分类:
其他 时间:
2018-01-13 19:52:17
收藏:
0 评论:
0 赞:
0 阅读:
442
为什么用ef? 我相信很多博友和我一样都有这种“选择困难症”,我曾经有,现在也有,这是技术人的一个通病——总想用“更完美”的方式去实现,导致在技术选择上犹豫不决,或总是推翻别人的技术路线,甚至屡屡推翻自己从前的想法,这种专研的精神固然不错,但随着年龄的增大,会发现这种习惯已将自己弄得很累,其实真没有 ...
分类:
Windows开发 时间:
2018-01-13 19:51:43
收藏:
0 评论:
0 赞:
0 阅读:
270
Implement the following operations of a queue using stacks. push(x) -- Push element x to the back of queue. pop() -- Removes the element from in front ...
分类:
其他 时间:
2018-01-13 19:51:19
收藏:
0 评论:
0 赞:
0 阅读:
203
Given a non-empty array of integers, return the k most frequent elements. For example,Given [1,1,1,2,2,3] and k = 2, return [1,2]. Note: class Solutio ...
分类:
其他 时间:
2018-01-13 19:50:46
收藏:
0 评论:
0 赞:
0 阅读:
220
java中的集合类型有: Collection ArrayList Vector Set List Map HashMap HashTable LinkedList 我们需要了解当使用bean时如何给一个class 的 集合属性注入值 例如,下面的class 我们需要给这个class 的arrayL ...
分类:
其他 时间:
2018-01-13 19:50:10
收藏:
0 评论:
0 赞:
0 阅读:
232
Say you have an array for which the ith element is the price of a given stock on day i. If you were only permitted to complete at most one transaction ...
分类:
其他 时间:
2018-01-13 19:49:54
收藏:
0 评论:
0 赞:
0 阅读:
250
spring 提倡我们使用接口编程 配合di技术 可以实现程序间的解耦 通过一个字母大小写转换的案例来体验 spring 配合di的接口编程 1, 先建立一个接口 2, 用两个类来实现接口 3,把对象配置到spring中 4,使用 接口 package com.example; /** * Crea ...
分类:
其他 时间:
2018-01-13 19:49:36
收藏:
0 评论:
0 赞:
0 阅读:
250
1、 2、 3、 4、 5、 ...
分类:
其他 时间:
2018-01-13 19:49:19
收藏:
0 评论:
0 赞:
0 阅读:
213
You are given a data structure of employee information, which includes the employee's unique id, his importance value and his directsubordinates' id. ...
分类:
其他 时间:
2018-01-13 19:49:02
收藏:
0 评论:
0 赞:
0 阅读:
195