题解 1209: 密码截获

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

已是最短了,请放心食用

摘要:解题思路注意事项:参考代码:#include<stdio.h>#include<string.h>int  PalindromeString(char *s)//写一个函数来得到每一轮的结果,返回一个……

java暴力破解(简单易懂)

摘要:解题思路:暴力破解,通过判断每个子序列找到最大长度注意事项:StringBuffer类和String类不能比较,需要进行类型转换参考代码: import java.util.*; import j……

java--study||O.o

摘要:参考代码:import java.util.Scanner; public class Main {   public static void main(String[] args)    ……

又是一个动态规划的题

摘要:#include<iostream> using namespace std; int main() {     string s;     while(getline(cin,s))  ……

密码截获——python

摘要:解题思路:注意事项:参考代码:while True:    try:        L = input()        L2 = []        if len(L) == 1:         ……

还是不理解为啥错了

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int ans = 0,maxx,flag,l,k,q,p;……

1209: 密码截获

摘要:```cpp #include using namespace std; bool pan_huiwei(string s) { int len=s.size(); for……