
Zigzag Array

您的函数应该创建 一个列表(list) of lists(lists) , 表示一个具有给定行数和列数的二维网格。
这个网格应该包含整数 (int)从start 到 start + rows * cols - 1 的整数,但是每个奇数索引行中的元素必须以降序排列,这样当以升序读取时,数字就会在二维网格中蜿蜒曲折。
输入两个整数 (int) - 行和列。一个可选整数 (int) - 开始
输出: 列表 (List)的列表 (lists).
You should be an authorized user in order to see the full description and start solving this mission.