喜欢走神的牛油果顶呱呱
喜欢走神的牛油果顶呱呱
全部文章
分类
题解(24)
归档
标签
去牛客网
登录
/
注册
喜欢走神的牛油果顶呱呱的博客
全部文章
(共47篇)
题解 | #二分查找-I#
import java.util.*; public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param nums int整型一维数组 * ...
2024-06-06
1
135
题解 | #浙江大学用户题目回答情况#
select device_id, question_id, result from question_practice_detail where device_id = (select device_id from user_profile where university = '浙江大学')
2023-05-12
0
168
题解 | #操作符混合运用#
select device_id, gender, age, university, gpa from user_profile where (gpa > 3.5 && university = '山东大学') or (gpa > 3.8 && university = '复旦大学');
2023-05-11
0
173
题解 | #数字颠倒#
num = list(input()) num.reverse() print(''.join(num))
2023-02-22
0
169
题解 | #字符串最后一个单词的长度#
import sys str = input().split(' ') print(len(str[-1])) #打印输出该列表中从右往左第一个字符串,其下表为-1
2023-02-20
0
203
题解 | #单词造句#
list = [] while True: s = input() if s == '0': break else: list.append(s) print(' '.join(list))
2023-02-04
0
283
题解 | #句子拆分#
str1 = input() print(str1.split(' '))
2023-02-04
0
222
题解 | #数学幂运算#
x, y = map(int, input().split()) print(pow(x, y), pow(y, x), sep='\n')
2023-02-03
0
180
题解 | #查字典#
dict1 = {'a': ['apple', 'abandon', 'ant'], 'b': ['banana', 'bee', 'become'], 'c': ['cat', 'come'], 'd': 'down'} a = input() for key in dict1: if...
2023-02-03
0
216
题解 | #名单中出现过的人#
tuple_list = ('Tom', 'Tony', 'Allen', 'Cydin', 'Lucy', 'Anna') print(tuple_list) name = input() if name in tuple_list: print('Congratulations!') e...
2023-02-02
0
207
首页
上一页
1
2
3
4
5
下一页
末页