Skip to content

Commit 538ff81

Browse files
committed
2
1 parent 0101f52 commit 538ff81

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Pascal'sTriangleII/Pascal'sTriangleII.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ class Solution {
33
vector<int> getRow(int rowIndex) {
44
// Start typing your C/C++ solution below
55
// DO NOT write int main() function
6+
67
vector<int> row[2];
78
row[0].resize(rowIndex+1);
89
row[1].resize(rowIndex+1);
@@ -19,4 +20,4 @@ class Solution {
1920
}
2021
return move(row[T2]);
2122
}
22-
};
23+
};

0 commit comments

Comments
 (0)