感觉昨天的迅雷,今天搜狐,都好像比较简单了。。是不是这些公司知道大佬已经拿好offer了开始招我们这些菜鸡了? 补一下 第二题暴力代码,,大概思路,可能不是完全一致 def move(target): point = [0] i = 0 while i < 2000: i = i + 1 point_new = [] if target not in point: for item in point: point_new.append(item + i) ...