1 def v_code(): 2 code_str = '' 3 for i in range(5): 4 import random 5 num = random.randint(0,9) 6 str1 = chr(random.randint(65,90)) 7 str2 = chr(rand ...
分类:
其他好文 时间:
2020-03-02 14:25:33
阅读次数:
50
思路:dp[i][j]的含义为str1[0..i]与str2[0..j]的最长公共子序列长度.#include<iostream>#include<string>usingnamespacestd;constintmaxn=100;intmain(){stringstr1,str2;cin>>str1;cin>>str2;intdp[maxn][ma
分类:
其他好文 时间:
2020-02-28 12:14:07
阅读次数:
47
// 1.md5加密 $str=md5('123456'); // 2.base64_decode加密 $str2=base64_encode('123456'); // 2.1 base64_解密 $str3= base64_decode($str2); // 3.哈希加密 $str4=\Hash ...
分类:
数据库 时间:
2020-02-26 14:18:43
阅读次数:
77
1、字符串 字符串可认为是个字符数组, 但实际上是一个对象 using System; namespace Demo { class Program { static void Main() { string str = "1kc02e3c2de43t"; string str2 = "1kc02e ...
较水。 #include<iostream> using namespace std; int hashtable1[300] = {0},hashtable2[300]= {0}; int main() { string str1,str2; cin>>str1>>str2; for(int i ...
分类:
其他好文 时间:
2020-02-19 13:09:29
阅读次数:
62
水题。与B1093 字符串A+B 类似。 #include<iostream> #include<cctype> using namespace std; bool hashtable[300] = {false}; int main() { string str1,str2; cin>>str1> ...
分类:
其他好文 时间:
2020-02-18 12:51:58
阅读次数:
72
水题。 #include"iostream" using namespace std; int main() { string str1,str2; char da,db; int pa = 0,pb = 0; cin>>str1>>da>>str2>>db; for(int i = 0; i < ...
分类:
其他好文 时间:
2020-02-16 12:52:01
阅读次数:
72
python有一个函数可以对文件进行操作这个函数就是 open() open (str1 , str2) 通常第一个参数我们填写文件名就好了,第二参数是填写文件打开的模式 r 表示 以只读打开 ,w 表示以写打开 , a 表示以追加的方式的表达 如果你什么参数都不写的话,默认以只读模式打开文件。 你 ...
分类:
编程语言 时间:
2020-02-14 18:36:30
阅读次数:
73
1.两个对象的 hashCode()相同,则 equals()也一定为 true,对吗? 不对,两个对象的 hashCode()相同,equals()不一定 true。 代码示例: String str1 = "通话"; String str2 = "重地"; System.out.println( ...
分类:
其他好文 时间:
2020-02-10 15:21:19
阅读次数:
241
# 计算时间差的功能 # 如果是年月日,只显示年月 # 2018-9-3 22:48:20 # 2019-9-4 22:48:20 import time str1 = '2020-2-3 22:48:0' str2 = '2019-9-4 22:48:20' struct_time1 = time ...
分类:
其他好文 时间:
2020-02-05 18:09:16
阅读次数:
58