1
0
Fork 0
mirror of https://gitlab.com/mfocko/LeetCode.git synced 2024-09-19 17:56:55 +02:00
LeetCode/problems/cpp/pascals-triangle-ii.cpp
Matej Focko 333866d1bc
chore: split solutions by language
Signed-off-by: Matej Focko <mfocko@redhat.com>
2023-06-02 17:19:02 +02:00

16 lines
371 B
C++

class Solution {
public:
vector<int> getRow(int rowIndex)
{
vector<int> result;
result.push_back(1);
for (auto k = 0; k < rowIndex; k++) {
auto next = static_cast<int>(
static_cast<long>(result.back()) * (rowIndex - k) / (k + 1));
result.push_back(next);
}
return result;
}
};