aboutsummaryrefslogtreecommitdiff
path: root/works/solutions/leetcode/cpp/62.cpp
blob: 744a0d33496c7e7b49bee677377904744b7c26d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#include <utility>

class Solution
{
public:
    // C(m + n - 2, m - 1)
    int uniquePaths(int m, int n)
    {
        if (m < n)
            std::swap(m, n);

        long long result = 1;
        for (int i = m; i <= m + n - 2; i++)
        {
            result *= i;
        }

        for (int i = 2; i <= n - 1; i++)
        {
            result /= i;
        }

        return result;
    }
};