神奇的追梦人就要上岸了
神奇的追梦人就要上岸了
全部文章
分类
归档
标签
去牛客网
登录
/
注册
神奇的追梦人就要上岸了的博客
全部文章
(共13篇)
题解 | #牛牛的选择#
score1=input() score2=input() if(score1 > score2): print('Tencent') else: print('Alibaba')
2023-06-14
0
144
题解 | #朋友的年龄和#
age=input() list_age=age.split() # 以空格split print(sum(list(map(lambda i: int(i), list_age)))) # lambda小函数
2023-06-14
0
160
题解 | #返回每个顾客不同订单的总金额#
select O.cust_id, T.total_price from (select order_num, sum(item_price*quantity) as total_price from OrderItems group by order_num) AS T INNER JOIN ...
2023-06-13
0
125
首页
上一页
1
2
下一页
末页