📅  最后修改于: 2023-12-03 15:21:32.563000             🧑  作者: Mango
本程序用于查找是否存在任何对给定产品之间的配对。
def find_pair(products: List[Tuple[str, str]]) -> bool:
pass
products: List[Tuple[str, str]]
- 给定产品列表,其中每个元素是由两个字符串组成的元组,表示一个产品。bool
- 返回值为 True
表示存在配对,返回值为 False
表示不存在配对。>>> products = [('apple', 'iphone'), ('apple', 'ipad'), ('samsung', 'note'), ('huawei', 'p30')]
>>> find_pair(products)
True
在上述示例中,products
列表中存在两个 apple
品牌的产品,因此返回值为 True
。
False
。False
。