蓝桥杯算法提高VIP-递归倒置字符数组-题解(Python代码) 摘要:重点是找规律:,我们以 9 abcdefghi为例:length=9 | i的序号 | 要交换的数组序号 | 交换后i的值 | | ------------ | ------------ …… 题解列表 2020年02月05日 0 点赞 0 评论 421 浏览 评分:0.0
蓝桥杯算法提高VIP-递归倒置字符数组-题解(Python代码)python开荒柘,简单题,简单代码 摘要:先上代码 ```python n=input().split() s=n[1] def loop(t,s): if t==int(len(s)/2): return s L=li…… 题解列表 2020年02月16日 0 点赞 0 评论 565 浏览 评分:7.6
蓝桥杯算法提高VIP-递归倒置字符数组-题解(Python代码) 摘要:```python def fun(n,s): if n != len(s): #显示当前转换的过程 print(''.join(s)) …… 题解列表 2020年03月09日 0 点赞 0 评论 374 浏览 评分:0.0
不用分奇偶也可以做,超简单 摘要:解题思路:注意事项:参考代码:a,b=input().split() a=int(a) b=list(b) for i in range(a//2): if i!=(a-i-1): …… 题解列表 2022年03月29日 0 点赞 0 评论 486 浏览 评分:9.9
1575: 蓝桥杯算法提高VIP-递归倒置字符数组 摘要:解题思路:注意事项:参考代码:t,string=map(str,input().split()) if t=='1': print() print(string)…… 题解列表 2022年04月22日 0 点赞 0 评论 158 浏览 评分:0.0
小南解题--递归倒置字符数组-61ms 摘要:'''15:30 2022/5/27zgn946'''b,a=map(str,input().split())c=int(b)//2a=list(a)f…… 题解列表 2022年06月27日 0 点赞 0 评论 133 浏览 评分:0.0
小南解题---递归倒置字符数组--67ms 摘要:'''2022年03月12日 15:19:20.799zgn946'''b,a=map(str,input().split())c=int(b)//2 …… 题解列表 2022年08月27日 0 点赞 1 评论 185 浏览 评分:6.0
递归倒置字符数组简便解法 摘要:n=list(input().split()) x=[] for i in n[1]: x.append(i) m=int(n[0])//2 a=0 b=int(n[0])-1 …… 题解列表 2023年03月31日 0 点赞 0 评论 76 浏览 评分:0.0