题解 1209: 密码截获

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

筛选

密码截获——python

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

编写题解 1209: 密码截获

摘要:解题思路:注意事项:参考代码:while True:     try:         st=input()         ts=st[::-1]         s=[]   &n

密码截获 (Java代码)

摘要:注意:精简后的代码在最后面注:我写的就比较复杂不怎么简练,做做参考看看就行参考代码:        import java.util.Scanner; public static void mai……

已是最短了,请放心食用

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

最长回文字符串(动态规划) 自用笔记

摘要:解题思路: 动态规划注意事项:如图所示,dp[0][3]的意思是cabb,不是指c和b。以对角线为分割,从左往右一列一列的填参考代码:#include<iostream> #include<ioma……

密码截获 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int huiwen_judge(int m,int k,char *s){    int l=m;    int l1=k;    f……