Mooizz's picture
Upload folder using huggingface_hub
1070765 verified
/**
* Sum of elements in array
*/
export function sum(arr: number[]): number {
return arr.reduce((a, b) => a + b, 0);
}