blob: 8d49e2f020253a35c16acc5838418e588dc602bf [file] [log] [blame] [raw]
pub fn sum_array(input: &[i32]) -> i32 {
input.iter().sum()
}