Count of Matches in Tournament — LeetCode 1688 Python Solution

EasyMathSimulation
Problem
#1688
Reading time
2 min

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

Python
class Solution:
    def numberOfMatches(self, n: int) -> int:
        return n - 1

Complexity

MeasureComplexity
TimeO(1)
SpaceO(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.

Stuck on problems like this in a live interview?

Stealth Interview is a desktop app for macOS and Windows. It reads the problem off your screen and returns a working solution with a step-by-step explanation and its time and space complexity — invisible to screen sharing.

Get Stealth Interview