🌈 搜索
📅  最后修改于: 2022-03-11 14:46:38.098000             🧑  作者: Mango
def Smaller_Branchless(a, b): return a * (a < b) + b * (b <= a)