一個真正的高人,
無論在圍棋方面,
或是做人處事方面,
要會判斷現在當下的輕重緩急,
學會形勢判斷,
知道自己有限的資源有哪些,
發揮出現有最大效益,
每個人只要懂得加入限制條件,
就可以規劃出最大效益的策略,
當自己人生中的軍師,
以下舉韓信點兵的程式例子:
m = int(input())
n = int(input())
def soldiers(m, n):
L = [i for i in range(m+1,n) if i % 3 == 2 and i % 5 == 3 and i % 7 == 2]
return L
print(soldiers(m, n))
input: m = 50, n = 500
output: [128, 233, 338, 443]