We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bcda483 commit 3e15243Copy full SHA for 3e15243
src/problem_0120_triangle/dynamic_programming.rs
@@ -6,8 +6,8 @@ use std::mem;
6
7
impl Solution {
8
pub fn minimum_total(triangle: Vec<Vec<i32>>) -> i32 {
9
- let mut temp_cache = Vec::with_capacity(triangle.len());
10
- let mut cache = Vec::with_capacity(triangle.len());
+ let mut temp_cache = Vec::<i32>::with_capacity(triangle.len()); // TODO: Remove explicit type annotation.
+ let mut cache = Vec::<i32>::with_capacity(triangle.len()); // TODO: Remove explicit type annotation.
11
12
for row in triangle {
13
temp_cache.resize(row.len(), 0);
0 commit comments