Skip to content

Commit e9e44e9

Browse files
authored
Update 1.cpp
1 parent 98c2e1e commit e9e44e9

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

16/1.cpp

+1-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ int main(void) {
1818
}
1919
}
2020
// 다이나믹 프로그래밍을 위한 2차원 DP 테이블 초기화
21-
int index = 0;
2221
for (int i = 0; i < n; i++) {
2322
for (int j = 0; j < m; j++) {
2423
dp[i][j] = arr[i][j];
@@ -45,4 +44,4 @@ int main(void) {
4544
}
4645
cout << result << '\n';
4746
}
48-
}
47+
}

0 commit comments

Comments
 (0)