摘要: A. Full House 2 只需判定 \(\{A, B, C, D\}\) 中是否只有 \(2\) 种数 代码实现 print('Yes' if len(set(map(int, input().split()))) == 2 else 'No') B. Calculator 模拟 代码实现 # 阅读全文