[toc] Description A number is called quasibinary if its decimal representation contains only digits 0 or 1. For example, numbers 0, 1, 101, 110011 — a ...
分类:
其他好文 时间:
2020-03-28 20:25:08
阅读次数:
93
Django默认自带的ORM功能非常强大,调用执行的方法去查询即可,不需要自己去写SQL了。 常用参数 __exact 精确等于 like 'aaa' __iexact 精确等于 忽略大小写 ilike 'aaa' __contains 包含 like '%aaa%' __icontains 包含 ...
分类:
编程语言 时间:
2020-03-28 17:55:23
阅读次数:
88
This time, you are supposed to find A×B where A and B are two polynomials. Input Specification: Each input file contains one test case. Each case occu ...
分类:
其他好文 时间:
2020-03-27 21:20:29
阅读次数:
79
1.两数之和 题目: 给定一个整数数组 和一个目标值 ,请你在该数组中找出和为目标值的那两个整数,并返回他们的数组下标。 你可以假设每种输入只会对应一个答案。但是,你不能重复利用这个数组中同样的元素。 思路: 由于哈希查找的时间复杂度为 ,可以利用 降低时间复杂度。 根据与 的差对数组中的数字进行映 ...
分类:
其他好文 时间:
2020-03-27 19:45:29
阅读次数:
62
查: filter 支持很多的过滤条件,我们来看下: contains 包含,相当于sql的like条件 1 Entry.objects.get(headline__contains='Lennon') SQL equivalent: 1 SELECT ... WHERE headline LIKE ...
分类:
数据库 时间:
2020-03-26 17:54:57
阅读次数:
114
Dockerfile的部分内容如下: RUN mkdir /root/.pip && echo -e "[global]\nindex-url = https://pypi.tuna.tsinghua.edu.cn/simple" > /root/.pip/pip.conf RUN pip inst ...
分类:
其他好文 时间:
2020-03-26 12:07:48
阅读次数:
117
914. 翻转游戏 中文English You are playing the following Flip Game with your friend: Given a string that contains only two characters: + and -, you can flip ...
分类:
其他好文 时间:
2020-03-26 01:06:15
阅读次数:
79
从最基础镜像到业务容器 构建 【为gitlab项目部署做铺垫】 业务镜像设计规划 目录结构 构建业务镜像 shell 从最基础镜像说起 制作自定义centos基础镜像,centos:v7.5是基于官方centos7.5镜像更改tag并上传到Harbor服务器的最原始官方镜像 pwd /data/k8 ...
分类:
Web程序 时间:
2020-03-25 01:48:39
阅读次数:
101
//1、add(Object e) //2、size() //3、addAll(Collection col1); //4、isEmpty() : 判断当前集合是否为空 //5、clear() 清空集合元素 //6、contains(Object obj) 方当前集合中是否包含obj //7、con ...
分类:
其他好文 时间:
2020-03-24 23:32:07
阅读次数:
64
题目描述 The cows are being invaded! Their republic comprises N (1 <= N <= 50,000) towns that are connected by M (1 <= M <= 100,000) undirected paths betw ...
分类:
其他好文 时间:
2020-03-24 09:16:45
阅读次数:
78