Count of Matches in Tournament — LeetCode 1688 Python Solution
- Problem
- #1688
- Pattern
- Math and Number Theory
- Reading time
- 2 min
- Source
- leetcode.com
The problem
You are given an integer n, the number of teams in a tournament that has strange rules: If the current number of teams is even, each team gets paired with another team. A total of n / 2 matches are played, and n / 2 teams advance to the next round.
Example
- Input
- n = 7
- Output
- 6
- Explanation
- Details of the tournament:
Python solution
class Solution:
def numberOfMatches(self, n: int) -> int:
return n - 1Complexity
| Measure | Complexity |
|---|---|
| Time | O(1) |
| Space | O(1) auxiliary |
Pattern: Math and Number Theory
Find the closed form, the invariant, or the modular identity — and skip the loop entirely. LeetCode 1688. Count of Matches in Tournament is filed here on both counts: the reference solution below belongs to the algorithm family this hub collects, and LeetCode tags it Math.
The math and number theory guide has the Python template for the pattern and the 485 LeetCode problems that use it.
Related problems
Frequently asked questions
- How hard is LeetCode 1688. Count of Matches in Tournament?
- LeetCode 1688. Count of Matches in Tournament is rated Easy on LeetCode.
- What is the time complexity of LeetCode 1688. Count of Matches in Tournament?
- The Python solution on this page runs in O(1).
- What is the space complexity of LeetCode 1688. Count of Matches in Tournament?
- The Python solution on this page uses O(1) auxiliary space.
- What topics does LeetCode 1688. Count of Matches in Tournament cover?
- LeetCode 1688. Count of Matches in Tournament is tagged Math and Simulation on LeetCode.