题解 2836: 数组逆序重放

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

编写题解 2836: 数组逆序重放

摘要:解题思路:逆序:nums[::-1]注意事项:参考代码:n=int(input()) nums=list(map(int,input().split())) #打包为整型数组 for i in n……

reverse倒序列表

摘要:解题思路:注意事项:参考代码:n=int(input())nums=list(map(int,input().split())) nums.reverse()for i in nums:     pr……

数组逆序重放的三种满分题解

摘要:解题思路:注意事项:参考代码:第一种.巧调放入位置法n=int(input())list1=list(map(int,input().split()))ls=[]for i in list1:    ……

2836: 数组逆序重放

摘要:参考代码:n = int(input()) print(' '.join(list(map(str, input().split()))[::-1]))……

2836: 数组逆序重放

摘要:解题思路:注意事项:参考代码:n=int(input())s=list(map(int,input().split()))sq=s[::-1]print(*sq)……

2836: 数组逆序重放

摘要:解题思路:注意事项:参考代码:n = int(input())l = list(input().split())l = l[::-1]print(" ".join(l))……