2020.8.2拼多多提前批(2021届)安全工程师笔试编程题: 题目大致的意思为: 输入:一行字符串,字符串的内容为1-9.从中大小为3的窗口横扫 输出:构成最大的三位数。 例如: input: '1234569994998566788' output: '999' # -*- coding: utf-8 -*- # @Time : 2020/8/2 20:15 # @FileName: test.py # @Software: PyCharm from itertools import permutations clas...