小米测开的笔试算法题很简单1.第一题题目很简单,给一串小字符串和一个大字符串判断小字符串能不能拼接成大字符串 def read_every_t(): n, L = input().split(" ") n, L = int(n), int(L) s = [] s.extend(input().split(" ")) print(s) assert len(s) == n un_use = [True] * n mubiao = input() index = 0 h...