LeetCode题解(1688):比赛中的配对次数(Python)
作者:互联网
题目:原题链接(简单)
标签:回溯算法、数学
解法 | 时间复杂度 | 空间复杂度 | 执行用时 |
---|---|---|---|
Ans 1 (Python) | O ( 1 ) O(1) O(1) | O ( 1 ) O(1) O(1) | 44ms (24.12%) |
Ans 2 (Python) | |||
Ans 3 (Python) |
解法一:
class Solution:
def numberOfMatches(self, n: int) -> int:
return n - 1
标签:Python,题解,复杂度,int,Ans,1688,解法 来源: https://blog.csdn.net/Changxing_J/article/details/112138118