mirror of
https://gitlab.com/mfocko/LeetCode.git
synced 2024-11-10 00:09:06 +01:00
15 lines
393 B
C++
15 lines
393 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;
|
|
}
|
|
};
|