Sexy primes are pairs of primes of the form (p, p+6), so-named since "sex" is the Latin word for "six". (Quoted from http://mathworld.wolfram.com/Sexy ...
分类:
其他好文 时间:
2021-02-20 11:45:24
阅读次数:
0
高斯消元解线性方程组 时间复杂度:O(\(n^3\)) https://www.luogu.com.cn/problem/P3389 题意:给定一个线性方程组,对其求解。 #include <bits/stdc++.h> using namespace std; const char nl = '\ ...
分类:
其他好文 时间:
2021-02-17 14:54:53
阅读次数:
0
1、 安装kubectl 关闭SWAP交换分区 swapoff -a 配置Kubernetes-YUM源 [root@minikube ~]# cat < /etc/yum.repos.d/kubernetes.repo [kubernetes] name=Kubernetes baseurl=ht ...
分类:
Web程序 时间:
2021-02-17 14:42:50
阅读次数:
0
/* { ###################### # Author # # Gary # # 2021 # ###################### */ #include<bits/stdc++.h> #define rb(a,b,c) for(int a=b;a<=c;++a) #de ...
分类:
其他好文 时间:
2021-02-15 12:03:57
阅读次数:
0
AT1981 [AGC001C] Shorten Diameter \(solved\) AT1982 [AGC001D] Arrays and Palindrome AT1983 [AGC001E] BBQ Hard \(solved\) AT1984 [AGC001F] Wide Swap AT ...
分类:
其他好文 时间:
2021-02-15 11:56:59
阅读次数:
0
the Computing Research Repository (CoRR) 论文地址:https://arxiv.org/abs/1909.11898 代码地址:https://github.com/hongwang600/DocRed Abstract 在本文中,我们进一步应用预先训练的语言 ...
分类:
其他好文 时间:
2021-02-10 13:32:54
阅读次数:
0
参考链接: K8S集群多master:Etcd v3备份与恢复 K8S集群单master:Kubernetes Etcd 数据备份与恢复 ETCD系列之一:简介:https://developer.aliyun.com/article/11035 集群节点详情 # kubectl get nodes ...
分类:
其他好文 时间:
2021-02-03 10:38:25
阅读次数:
0
说明 maxscale 配置没有问题,但是就是不好使。 报错如下: warning: [mariadbmon] The current master server 'server1' is no longer valid because it has been down over 5 (failco ...
分类:
数据库 时间:
2021-02-02 11:13:27
阅读次数:
0
什么是CAS CAS(compare and swap),字面意思比较并交换,是解决多线程并行情况下使用锁造成性能损耗的一种机制. public final boolean compareAndSet(int expect, int update) { return unsafe.compareAn ...
分类:
编程语言 时间:
2021-01-29 12:10:28
阅读次数:
0
此博客链接:https://www.cnblogs.com/ping2yingshi/p/14331519.html 等价多米诺骨牌对的数量 题目链接:https://leetcode-cn.com/problems/number-of-equivalent-domino-pairs/ 题目 给你一 ...
分类:
其他好文 时间:
2021-01-27 13:43:12
阅读次数:
0