为看花火大会而编程
为看花火大会而编程
全部文章
题解
归档
标签
去牛客网
登录
/
注册
为看花火大会而编程的博客
全部文章
/ 题解
(共16篇)
题解 | #单词倒排#xdjy2
while True: try: str1=input() list1=list() stack=list() for i in str1: if i.isalpha(): stack.append(i) else: if len(stack)!=0: list1.append("".join(st...
Python3
2022-02-23
0
348
题解 | #字符串排序#
# 1.排序方式:全部转换成小写字母进行排序 # 2.用for i in str1: i.isupper() +upindex[] 记录大写字母转化的位置,排序后再转换回去。 # 3.记录下 not i.isalpha() 的字符和位置index 后续 insert。采用栈pop()的特性一个一...
Python3
2021-10-09
3
645
题解 | #简单密码#
while True: try: str1=input() stack=[] for i in str1: if i.isalnum(): if i.isupper(): ...
Python3
2021-10-09
1
561
题解 | #字符串排序#
while True: try: num=int(input()) stack=[] for i in range(num): stack.append(input()) print("\n".join(...
Python3
2021-10-09
74
5204
题解 | #合并表记录#
import re while True: try: num=int(input()) key=[] val=[] for i in range(num): list1=list(map(int,inpu...
Python3
2021-10-08
0
424
题解 | #字符逆序#
while True: try: str1=input() print("".join(list(reversed(str1)))) except: break
Python3
2021-10-08
10
1701
题解 | #查找输入整数二进制中1的个数#
while True: try: num=bin(int(input()))[2:] print(num.count("1")) except: break #注意bin()输出的是一个二进制字符串,ob011101即可
Python3
2021-10-08
0
328
题解 | #完全数计算#
while True: try: n=int(input()) list1=[] result=0 if n<=5: print("0") else: for...
Python3
2021-10-08
0
369
题解 | #输入整型数组和排序标识,对其元素按照升序或降序进行排序#
while True: try: num=int(input()) arr=input().split() rever=int(input()) se1=list(map(int,arr))#为了排序,先将序列str转换成int...
Python3
2021-10-08
0
620
暴力破解之随机数
代码出自:https://blog.nowcoder.net/n/2907a1f4e68a4e638df20fd93c9d06b1 题目:盘子放苹果:https://www.nowcoder.com/practice/bfd8234bb5e84be0b493656e390bdebf ...
Python3
2021-09-30
1
902
首页
上一页
1
2
下一页
末页