[Description] Given a string, find the largest unique substring. e.g. str[] = "asdfghjkkjhgf"; sub[] = "asd"; [Thought] create an auxiliary space 'record[256]' to record the appearence of characters. O(n) [Implementation] C code: #inc…
题目: 输入三个整数x,y,z,请把这三个数由小到大输出. 程序分析: 我们想办法把最小的数放到x上,先将x与y进行比较,如果x>y则将x与y的值进行交换,然后再用x与z进行比较,如果x>z则将x与z的值进行交换,这样能使x最小. 个人的思路及代码: 两种方法:分别使用sorted()或者min()函数 x,y,z = [int(x) for x in input("请输入三个数字:三个数字间以空格分隔").strip().split(" ")] li…