2020届阿里巴巴秋招笔试题——兔子跳机关

青蛙从第一行矩阵中任意一个出发,隔行或者隔列跳一直跳到最后一行,中间隔过的格子数字之和最小的值是多少。

# n=int(input())
# arr = []
# while n>0:
#     arr.append([int(i) for i in input().strip().split(',')])
#     n-=1
import math
n = 6
arr = [[1,2,3,5,7,6],
     [2,1,4,5,7,4],
     [3,4,5,6,3,6],
     [2,3,1,4,6,8],
     [5,6,1,4,6,2],
     [4,2,4,1,1,6]]
times = math.ceil(n/2)
def find(res,row,col,count):
    if row+1

你可能感兴趣的:(面试经验)