#problem.py import sys key = '****CENSORED***************' flag = 'TWCTF{*******CENSORED********}' if len(key) % 2 == 1: print("Key Length Error") sys ...
分类:
其他好文 时间:
2020-05-09 13:08:10
阅读次数:
92
Oracle trace文件中的一段 PARSING IN CURSOR #140498482538928 len=156 dep=0 uid=0 oct=47 lid=0 tim=45795163585 hv=777087606 ad='207895c70' sqlid='ftqjy1wr52um ...
分类:
数据库 时间:
2020-05-09 00:56:06
阅读次数:
98
#自然语言处理词纠错,编辑距离计算,DP算法 def edit_distance(s,p): if len(s)==0:return len(p) if len(p)==0:return len(s) dp=[[0 for i in range(len(p)+1)] for j in range(l ...
分类:
编程语言 时间:
2020-05-07 00:54:50
阅读次数:
74
所有排序都是从小到大进行排序 1插入排序 插入排序的思想主要是,将[a1,a2,a3,a4....ai.......an]前ai-1个序列看成有序的,然后用第ai个数与前面的数进行比较,找到位置进行插入 int i,j,temp;//a[len] for(i=1;i<len;i++){//假设a[0 ...
分类:
编程语言 时间:
2020-05-06 18:09:33
阅读次数:
67
目录导航 引入 通用方法篇 八大基本数据类型的定义与类型互转 len() in not in index(str,list,tuple) int类型的进制转换 str方法篇 str的必备操作 str的了解操作 list方法篇 list的必备操作 list的了解操作 tuple方法篇 tuple的寥寥 ...
分类:
编程语言 时间:
2020-05-06 17:55:08
阅读次数:
73
题目: 解答: 1 class Solution { 2 public: 3 void merge(vector<int>& A, int m, vector<int>& B, int n) 4 { 5 int len1 = m - 1; 6 int len2 = n - 1; 7 int len ...
分类:
编程语言 时间:
2020-05-05 20:13:16
阅读次数:
67
题目: 解答: 方法一:会超时间 1 class Solution { 2 public: 3 void rotate(vector<vector<int>>& matrix) 4 { 5 // 思路是: 转置 + 反转每一行 6 7 int len = matrix.size(); 8 9 // ...
分类:
编程语言 时间:
2020-05-05 20:09:54
阅读次数:
66
```#include#include#includeusing namespace std;const int N=15;int len;int d[N];int f[N][N];int dfs(int pos,int pre,bool lead,int limit){ if(!pos) retu... ...
题目: 解答: lef和rig分别指向左右的数,比较并从最大位开始装。 1 class Solution { 2 public: 3 vector<int> sortedSquares(vector<int>& A) 4 { 5 int len = A.size(); 6 vector<int> a ...
分类:
编程语言 时间:
2020-05-04 19:50:58
阅读次数:
59
此只支持十以内的计算,所以如果需要通用的话还需改进!!! from Stack import * def funcations(n): po=[] stack=Stack() for i in range(len(n)): po.append(n[i]) for token in po: if to ...
分类:
编程语言 时间:
2020-05-04 15:42:03
阅读次数:
62