Clifford code Clifford group是什么? 简单的公式来表达,就是 $Cl_{n}=\left\{U: U P_{n} U^{\dagger} \in P_{n}\right\}$ 。 用语言来描述,就是对一个泡利施加一个U操作,然后还是一个泡利。 首先,所有的泡利都属于$Cl ...
分类:
其他好文 时间:
2020-05-23 16:22:02
阅读次数:
97
问题: 给定数组,切分为left和right,使得left的所有元素<=right的所有元素,返回left的长度 Example 1: Input: [5,0,3,8,6] Output: 3 Explanation: left = [5,0,3], right = [8,6] Example 2: ...
分类:
其他好文 时间:
2020-05-23 13:20:11
阅读次数:
49
###################################### ###统计类方法 # count()计数,统计输入值出现的次数,可以传入开始于结束值指定检索范围 # string = 'i like hatusne miku' # num = string.count('k', 3, ...
分类:
编程语言 时间:
2020-05-23 13:10:56
阅读次数:
58
.wx-swiper-dots{position:relative;left: unset!important;right: 0;} .wx-swiper-dots.wx-swiper-dots-horizontal{ margin-bottom: -5rpx; } ...
分类:
微信 时间:
2020-05-23 09:50:46
阅读次数:
648
INSERT INTO test_table_public(class, name, geography) SELECT class, name, geography FROM test_table WHERE id >= 137181 AND id <= 137214; SELECT class, ...
分类:
数据库 时间:
2020-05-23 00:40:28
阅读次数:
100
垂直居中: 块级元素 1.使用position设置定位方式后进行元素的偏移 2.利用CSS3的弹性布局(flex) 内联元素 使用CSS3 flex布局 水平居中: 块级元素 1.直接设置margin 2.使用position设置定位方式后进行元素的偏移(类似于垂直居中相应的方法),先设置left: ...
分类:
其他好文 时间:
2020-05-23 00:36:08
阅读次数:
49
今天在写sql语句的时候遇到了join on 这个东西表示的是外连接还是内连接呢?想要验证其实并不难 查询出来的数据量 --129 SELECT count(1) FROM t_budget a left JOIN t_budget_item b on a.budget_id =b.budget_i ...
分类:
数据库 时间:
2020-05-23 00:27:08
阅读次数:
114
注意给父级加上 (1)横向滚动 left:0; right:0; 然后想要横向滚动的话 overflow-x:scroll; overflow-y:hidden; (2)竖直方向滚动 top:0; bottom:0; position:fixed; overflow-y:scroll; overfl ...
分类:
其他好文 时间:
2020-05-22 19:03:10
阅读次数:
50
1.三种定位方式: 相对定位relative:相对于自身的位置进行偏移,postion需要搭配left/right/top/bottom postion:relative; left:10px; bottom:10px; 绝对定位position:相对于有position属性的父元素定位,如果父元素 ...
分类:
编程语言 时间:
2020-05-22 18:56:36
阅读次数:
67