题目描述: 第一次提交: 方法二:哈希表 方法三:排序 ...
分类:
其他好文 时间:
2019-10-04 11:21:49
阅读次数:
56
DynamoDB supports two types of primary keys: Partition key: A simple primary key, composed of one attribute known as the partition key. Attributes in ...
分类:
其他好文 时间:
2019-10-03 12:48:05
阅读次数:
90
数据插入 INSERT是用来插入或者添加行到数据库表的,插入可以分为几种方法 插入完整的行 插入行的一部分 插入多行 插入某些查询的结果 插入完整的行 此例子插入一个新客户到customers表,存储到每个表列中的数据在VALUES语句中给出,对每个列必须提供一个值 虽然这种语法很简单,但并不安全, ...
分类:
其他好文 时间:
2019-10-02 23:21:55
阅读次数:
149
这是Leetcode第220题,给定一个整数数组,问是否存在两个数差距最多为$t$,两数的间隔最大为$k$。 很明显,这里需要用到一个大小为$K$的窗口,每次判断窗口内是否存在每个数差值满足$ bool: n=len(nums) if t==0 and n==len(set(nums)): retu ...
分类:
其他好文 时间:
2019-10-02 17:09:24
阅读次数:
114
题目如下: Given a string s, a k duplicate removal consists of choosing k adjacent and equal letters from s and removing them causing the left and the righ ...
分类:
其他好文 时间:
2019-10-02 10:55:30
阅读次数:
87
1. kafka介绍 1.1. 主要功能 根据官网的介绍,ApacheKafka®是一个分布式流媒体平台,它主要有3种功能: 1:It lets you publish and subscribe to streams of records.发布和订阅消息流,这个功能类似于消息队列,这也是kafka ...
分类:
其他好文 时间:
2019-10-02 00:30:40
阅读次数:
203
1、表结构 class Student(models.Model): """ 学生表(已报名) """ customer = models.OneToOneField(verbose_name='客户信息', to='Customer',on_delete=models.CASCADE,null=T ...
分类:
其他好文 时间:
2019-09-29 09:39:26
阅读次数:
107
PAT A1083 List Grades 题目描述: Given a list of N student records with name, ID and grade. You are supposed to sort the records with respect to the grade ...
分类:
其他好文 时间:
2019-09-28 12:26:17
阅读次数:
100
一、print打印输出1、%形式输出1.1 print打印输出print("hello,world!") 1.2 有以下格式符%s 字符串 (采用str()的显示)%r 字符串 (采用repr()的显示)%c 单个字符%b 二进制整数%d 十进制整数%i 十进制整数%o 八进制整数%x 十六进制整数 ...
分类:
编程语言 时间:
2019-09-27 17:39:44
阅读次数:
80
向数据库中插入一条记录,若该数据的主键值(UNIQUE KEY)已经在表中存在,则执行后面的 UPDATE 操作。否则执行前面的 INSERT 操作。 测试表结构 执行更新插入 第一次执行后 再次执行 变成了更新操作 ...
分类:
数据库 时间:
2019-09-26 14:51:11
阅读次数:
95