B - Lucky Mask Petya loves lucky numbers very much. Everybody knows that lucky numbers are positive integers whose decimal record contains only the lu ...
分类:
其他好文 时间:
2020-12-25 12:22:13
阅读次数:
0
CHECK约束在MySQL8.0.16之前,CREATETABLE只允许以下有限功能版本的表CHECK约束语法,它被解析并忽略:1.CHECK(expr)从MySQL8.0.16开始,CREATETABLE支持表和列CHECK约束的核心功能,适用于所有存储引擎。对于表约束和列约束,CREATETABLE允许以下CHECK约束语法:1.[CONSTRAINT[symbol]]CHECK(expr)[
分类:
数据库 时间:
2020-12-10 11:09:04
阅读次数:
4
Given an array of integers nums and an integer threshold, we will choose a positive integer divisor and divide all the array by it and sum the result ...
分类:
其他好文 时间:
2020-11-13 13:21:44
阅读次数:
33
循环结构 循环结构: 重复执行特定语句 循环结构分类 for循环 while循环 3.do...while循环 1.for循环 1.1 语法: for(初始条件语句;终止条件语句;迭代条件语句){ 循环执行体 } 1.2 执行过程 (1) 初始化条件表达式 (2)判断循环表达式 (3)成立则执行条件 ...
分类:
编程语言 时间:
2020-10-19 22:33:00
阅读次数:
18
###题目 First Missing Positive ###解题方法 题意是从1开始按顺序找(1,2,3,...),找到第一个数组中没有的数,返回。 题意要求时间复杂度O(n),空间复杂度O(1),先用python自带的O(logn)的Timsort排序,设置一个missingnum变量,表示从 ...
分类:
其他好文 时间:
2020-10-12 20:14:24
阅读次数:
21
Problem: The highest building in our city has only one elevator. A request list is made up with N positive numbers. The numbers denote at which floors ...
分类:
编程语言 时间:
2020-10-05 22:34:28
阅读次数:
52
有时候,或者说经常,我们会在F5的时候遇到栈帧不平衡的问题。每每这种时候就需要我们手动alt+k调整栈帧。 我曾经非常苦恼,这是个smjb玩意,我到底该怎么调整栈帧。网上查了很多资料很多博客,但我都觉得难以理解,而且难以操作。 后来我无意间看到一篇博客,说只要用他的方法,调整栈帧是很容易的一件事,我 ...
分类:
其他好文 时间:
2020-09-17 23:17:23
阅读次数:
34
Problem LeetCode Given a collection of candidate numbers (candidates) and a target number (target), find all unique combinations in candidates where t ...
分类:
编程语言 时间:
2020-09-17 20:29:16
阅读次数:
30
地址 https://leetcode-cn.com/problems/kth-missing-positive-number/ 给你一个 严格升序排列 的正整数数组 arr 和一个整数 k 。 请你找到这个数组里第 k 个缺失的正整数。 示例 1: 输入:arr = [2,3,4,7,11], k ...
分类:
其他好文 时间:
2020-08-09 19:10:05
阅读次数:
80
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=6808 思路:刚开始也是乱想,想几下就忍不住画个t-x图像,然后每个点有两种可能,一是向西跑,一是向东跑。在图中都画出来发现: 我画了4个点,箭头表示可能移动的方向,这时候发现这不就是找“覆盖所有点最少需 ...
分类:
其他好文 时间:
2020-07-30 22:21:13
阅读次数:
191