You are viewing a single comment's thread. Return to all comments →
RUST:
fn aVeryBigSum(ar: &[i64]) -> i64 { let sum: i64 = {
let mut temp_sum: i64 = 0; for i in ar { temp_sum += i; } temp_sum }; sum
}
Seems like cookies are disabled on this browser, please enable them to open this website
A Very Big Sum
You are viewing a single comment's thread. Return to all comments →
RUST:
fn aVeryBigSum(ar: &[i64]) -> i64 { let sum: i64 = {
}