题解 | 神秘石像的镜像序列
神秘石像的镜像序列
https://www.nowcoder.com/practice/fa34eea974234610b6d3d81790cb2949
import sys
a=input().split()
b=a[::-1]
for i in range(1,len(b)):
print(b[i],end=' ')
神秘石像的镜像序列
https://www.nowcoder.com/practice/fa34eea974234610b6d3d81790cb2949
import sys
a=input().split()
b=a[::-1]
for i in range(1,len(b)):
print(b[i],end=' ')
相关推荐