Leon4gr45's picture
Upload folder using huggingface_hub (part 5)
01e6679 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);
}