Code Signal_10分钟挑战题_constructArray
Posted yd2018
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Code Signal_10分钟挑战题_constructArray相关的知识,希望对你有一定的参考价值。
完成时间3分06秒
Given an integer size
, return an array containing each integer from 1
to size
in the following order:
1, size, 2, size - 1, 3, size - 2, 4, ...
Example
For size = 7
, the output should beconstructArray(size) = [1, 7, 2, 6, 3, 5, 4]
.
我的解答:
def constructArray(size): l = [] x = 1 for i in range(size): if i % 2 == 0: l.append(x) x += 1 else: l.append(size+2-x) return l
以上是关于Code Signal_10分钟挑战题_constructArray的主要内容,如果未能解决你的问题,请参考以下文章