蓝桥杯算法训练VIP-确定元音字母位置-题解(Python代码) 摘要:```python s = input() for i in range(len(s)): if s[i].lower() in ['a','e','i','o','u']: …… 题解列表 2020年03月24日 0 点赞 0 评论 1287 浏览 评分:9.9
[STL训练]百步穿杨-题解(C++代码)只做最好的思路! 摘要:这题是我这几天遇到了比较简单的了,终于可以自己做对了,但这个评判系统好像有点问题,第一次我做的时候没有按箭矢长短来排序,居然通过了,代码如下: ```cpp #include using nam…… 题解列表 2020年03月24日 1 点赞 1 评论 981 浏览 评分:9.9
密码截获 (Python代码) 摘要:```python # 判断一个字符串是否为回文 def func(str1): length = len(str1) str2 = "" for i in rang…… 题解列表 2020年03月24日 0 点赞 0 评论 1194 浏览 评分:9.9
增添战力-题解(C++代码) 摘要:# 增添战力 ## 题目链接 [https://www.dotcpp.com/oj/problem2109.html](https://www.dotcpp.com/oj/problem2…… 题解列表 2020年03月24日 0 点赞 0 评论 1120 浏览 评分:9.9
优质题解 虚张声势-题解(C++代码)(标准化思维) 摘要:## 虚张声势题解 ## 题目链接: [https://www.dotcpp.com/oj/problem2110.html](https://www.dotcpp.com/oj/prob…… 题解列表 2020年03月24日 0 点赞 0 评论 1075 浏览 评分:9.9
排列-题解(Python代码) 摘要:```python import itertools count = int(input()) while count > 0: ipt = input() # 每个数字之间有一个…… 题解列表 2020年03月24日 0 点赞 1 评论 1182 浏览 评分:9.9
连环阵-题解(C++代码) 摘要:# 连环阵 ## 题目链接: [https://www.dotcpp.com/oj/problem2111.html](https://www.dotcpp.com/oj/problem2…… 题解列表 2020年03月24日 0 点赞 0 评论 920 浏览 评分:9.9
优质题解 决战拼接-题解(C++代码)(超详细。。应该很详细了) 摘要:# 决战拼接 ## 题目链接: [https://www.dotcpp.com/oj/problem2112.html](https://www.dotcpp.com/oj/problem…… 题解列表 2020年03月24日 0 点赞 0 评论 1646 浏览 评分:9.9
蓝桥杯算法提高VIP-3000米排名预测-题解(C++代码)---求出全部排列,逐个判断 摘要:解题思路: 1.**枚举全部排名的排列:**分别对每个排列进行判断 2**.每个排列判断方法是:**m个人说了m句话,该排列必须符合这全部的m句话,如果违反其中一句,就直接判错。 3**.判断是…… 题解列表 2020年03月24日 0 点赞 3 评论 1001 浏览 评分:9.9
敲七游戏-题解(Python代码) 摘要:```python num = int(input()) count = 0 for i in range(2, num + 1): # 如果i能被7整除,则count+1并跳过本次循环…… 题解列表 2020年03月24日 0 点赞 0 评论 2164 浏览 评分:9.9