Winter-In-December
静/享/冬/天/的/时/光
Let's do some exercises
每日一题
高等数学/理力/C语言/大美/大英
怀着一份轻盈和喜悦,
期待冬天的到来。
力土院会将竭诚打造“每日一题”系列,
希望这个冬天成为大家都难忘的冬天!
讨论群
我们建立了一个微信群用于讨论每日一题中不会的地方或者指出答案中的纰漏之处,也可以提一些其他不会的问题,如果需要加群请在推文下方留言,记得说明学号与姓名哦~
讨论群
上期答案
高数:
大英:
python:
def spiralOrder(matrix):
result = []
if not matrix:
return result
# 定义上下左右边界
top, bottom, left, right = 0, len(matrix) - 1, 0, len(matrix[0]) - 1
while True:
# 从左到右遍历上边界
for i in range(left, right + 1):
result.append(matrix[top][i])
top += 1
if top > bottom:
break
# 从上到下遍历右边界
for i in range(top, bottom + 1):
result.append(matrix[i][right])
right -= 1
if left > right:
break
# 从右到左遍历下边界
for i in range(right, left - 1, -1):
result.append(matrix[bottom][i])
bottom -= 1
if top > bottom:
break
# 从下到上遍历左边界
for i in range(bottom, top - 1, -1):
result.append(matrix[i][left])
left += 1
if left > right:
break
return result
军理:
和平共处五项原则
毛概:
马克思主义中国化时代化的第一个重大理论成果。
中国革命和建设的科学指南。
中国共产党和中国人民宝贵的精神财富
高数
理力
C语言
大美
审美意象指的是什么
大英
请写出“金砖五国"的五个国家的英文名称
审核 | 路宽 褚萌
文案 | 力学与土木建筑学院学生会
编辑 | 力学与土木建筑学院学生会