Skip to content

Commit 3e15243

Browse files
committed
Workaround for <rust-lang/rust#90904>
1 parent bcda483 commit 3e15243

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/problem_0120_triangle/dynamic_programming.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ use std::mem;
66

77
impl Solution {
88
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());
9+
let mut temp_cache = Vec::<i32>::with_capacity(triangle.len()); // TODO: Remove explicit type annotation.
10+
let mut cache = Vec::<i32>::with_capacity(triangle.len()); // TODO: Remove explicit type annotation.
1111

1212
for row in triangle {
1313
temp_cache.resize(row.len(), 0);

0 commit comments

Comments
 (0)