Lchenglong
Lchenglong
全部文章
分类
未归档(1)
题解(26)
归档
标签
去牛客网
登录
/
注册
Lchenglong的博客
全部文章
(共23篇)
题解 | #排序#
python 实现快排 # # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # 将给定数组排序 # @param arr int整型一维数组 待排序的数组 # @return int整型一维数组 # class Solution: def MySort(se...
Python3
2022-01-15
0
530
题解 | #句子逆序#
Python 代码实现 while True: try: string = list(input().split()) print(' '.join(string[::-1])) except: break
Python3
2022-01-10
14
1646
题解 | #明明的随机数#
Python 代码实现 while True: try: n = int(input()) a = set() for _ in range(n): a.add(int(input())) for i i...
Python3
2022-01-10
2
952
题解 | #计算某字符出现次数#
Python 代码实现 string = input() alpha = input() count = 0 for i in string: if i.upper() == alpha.upper(): count += 1 print(count)
Python3
2022-01-10
0
634
题解 | #矩阵乘法计算量估算#
Python 代码实现: while True: try: alpha = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' num = 0 n = int(input()) dict_a = {} fo...
Python3
2022-01-09
7
1121
题解 | #求解立方根#
Python 代码实现: n = float(input()) res = pow(n,1/3) if n > 0 else -pow(-n, 1/3) print('{:.1f}'.format(res))
Python3
2022-01-09
2
805
题解 | #合法IP#
Python 代码实现: while True: try: IP_list = list(input().split('.')) if len(IP_list) != 4: print('NO') continu...
Python3
2022-01-09
0
433
题解 | #自守数#
while True: try: n = int(input()) count = 0 for i in range(n+1): if str(i ** 2).endswith(str(i)): ...
Python3
2022-01-08
0
420
题解 | #扑克牌大小#
Python 代码实现: while True: try: head_1, head_2 = input().split('-') hand_dict = {'3':0,'4':1,'5':2,'6':3,'7':4,'8':5,'9':6,'10':7,'J...
Python3
2022-01-08
0
386
题解 | #找出字符串中第一个只出现一次的字符#
Python hashmap统计字母出现次数 while True: try: input_str = input() num_dict = {} res = '' for i in range(len(input_str)):...
Python3
2022-01-07
0
365
首页
上一页
1
2
3
下一页
末页