captain_fto
captain_fto
全部文章
分类
题解(54)
归档
标签
去牛客网
登录
/
注册
captain_fto的博客
全部文章
(共40篇)
题解 | #序列中整数去重#
从后往前count删除元素,再反转输出 n=input() nums=input().split(" ") dst_nums=nums[::-1] for i in nums: if dst_nums.count(i)>1: dst_nums.remove(i) pri...
Python3
2021-12-19
0
301
题解 | #序列中删除指定数字#
remove仅删除匹配第一个元素,需遍历删除 n=input() nums=input().split(" ") del_num=input() src_nums=nums[::] for i in src_nums: if i==del_num: nums.remove(d...
Python3
2021-12-19
0
374
题解 | #有序序列判断#
先判断原序列是降序还是升序 n=input() num=input().split(" ") nums=list(map(int,num)) if int(nums[1])<int(num[0]): nums_src=nums[::-1] else: nums_src=nums...
Python3
2021-12-19
0
372
题解 | #图像相似度#
while True: try: num=input().split(" ") m,n=map(int,num) pixel_lista=[] pixel_listb=[] same_count=0 ...
Python3
2021-12-19
2
423
题解 | #筛选法求素数#
import math def isPrime(n): for i in range(2,int(math.sqrt(n))+1): if n%i==0: return False return True while True: try...
Python3
2021-12-19
0
449
题解 | #有序序列插入一个数#
total_num=input() num=input().split(" ") nums=list(map(int,num)) insert_num=input() nums.append(int(insert_num)) nums.sort() for i in range(len(nums))...
Python3
2021-12-19
0
278
题解 | #公务员面试#
map后注意list转换 while True: try: score=input().split(" ") scores=list(map(int,score)) avg_score=(sum(scores)-max(scores)-min(...
Python3
2021-12-19
0
360
题解 | #数字三角形#
#双层循环 def print_pic(n): for i in range(1,n+1): for j in range(1,i+1): print("{} ".format(j),end="") print() while True...
Python3
2021-12-19
0
330
题解 | #HTTP状态码#
#key非int类型 def http_status(status_code): http_statu={'200':'OK','202':'Accepted','400':'Bad Request','403':'Forbidden','404':'Not Found','500':'In...
Python3
2021-12-19
0
408
题解 | #空心正方形图案#
双层循环 #双层循环 def print_pic(n): for i in range(1,n+1): for j in range(1,n+1): if i==1 or i==n or j==1 or j==n: pr...
Python3
2021-12-19
1
368
首页
上一页
1
2
3
4
下一页
末页