Leon4gr45's picture
Upload folder using huggingface_hub (part 5)
19e88d2 verified
Raw
History Blame Contribute Delete
123 Bytes
/**
* Sum of elements in array
*/
export function sum(arr: number[]): number {
return arr.reduce((a, b) => a + b, 0);
}