mysql时间日期函数 now(), current_timestamp(); -- 当前日期时间 current_date(); -- 当前日期 current_time(); -- 当前时间 date('yyyy-mm-dd hh:ii:ss'); -- 获取日期部分 time('yyyy-mm ...
分类:
数据库 时间:
2019-11-02 12:18:26
阅读次数:
99
299. Bulls and Cows Easy Easy Easy You are playing the following Bulls and Cows game with your friend: You write down a number and ask your friend to ...
分类:
其他好文 时间:
2019-11-02 12:04:09
阅读次数:
91
题目描述: Reverse a linked list from position m to n. Do it in-place and in one-pass.For example:Given 1->2->3->4->5->NULL, m = 2 and n = 4, return 1->4-> ...
分类:
其他好文 时间:
2019-11-02 00:26:52
阅读次数:
75
Leetcode 80. Remove Duplicates from Sorted Array II 这里其实也可以用类似于 Remove Duplicates from Sorted Array 中的解法三的模版,由于这里最多允许两次重复,那么当前的数字 num 只要跟上上个覆盖位置的数字 nu ...
分类:
其他好文 时间:
2019-11-01 22:16:59
阅读次数:
97
一、调试技术 (1)调试流程?:单元测试->集成测试->交测试部 (2)分类:i.静态调试(说白了就是看代码,看看有没有错);ii.动态测试 1.pdb调试 ?相关连接:https://blog.csdn.net/xc_zhou/article/details/80921483 作者:周小董 2.p ...
分类:
编程语言 时间:
2019-11-01 09:42:15
阅读次数:
94
Given an unsorted array nums, reorder it such that nums[0] < nums[1] > nums[2] < nums[3].... Example 1: Example 2: Note:You may assume all input has v ...
分类:
其他好文 时间:
2019-11-01 09:40:11
阅读次数:
64
原文链接:http://blog.csdn.net/phoenix36999/article/details/53304126 首先排除数据回滚及增加删除等操作。 按照这篇文章SQL Server 2012 Auto Identity Column Value Jump Issue的方法,就可以解决 ...
分类:
数据库 时间:
2019-10-31 23:57:23
阅读次数:
155
给定一个字符串 s,将 s 分割成一些子串,使每个子串都是回文串。 返回符合要求的最少分割次数。 示例: 输入:?"aab" 输出: 1 解释: 进行一次分割就可将?s 分割成 ["aa","b"] 这样两个回文子串。 class Solution { public: int ispalindrom ...
分类:
其他好文 时间:
2019-10-31 23:21:30
阅读次数:
111
Given two arrays, write a function to compute their intersection. Example 1: Example 2: Input: nums1 = [4,9,5], nums2 = [9,4,9,8,4] Output: [4,9] Exam ...
分类:
其他好文 时间:
2019-10-31 13:31:37
阅读次数:
103
一:前言手机异形屏的出现,给手游自适应带来了新的麻烦。对于Game前端来说,奇葩的是,刘海屏/打孔屏/水滴屏,将来还不知道出现个什么屏,更为奇葩的是,刘海吧,大小长度不一样;打孔吧,位置不一样;水滴屏,大小不一样。SO,本篇Blog,给出了普遍的做法:将刘海,打孔,水滴全部部分去掉,不显示任何内容。当然读者可以更具不同的机型,定制的自适应异形屏。二:方案1,利用wx.getSystemInfo,可
分类:
微信 时间:
2019-10-31 12:01:31
阅读次数:
672