Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
muryshev/chat-v3
muryshev
/
chat-v4
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
chat-v4
/
chat-ui
/
src
/
lib
/
utils
/
sum.ts
Матенков Андрей
Chat moved from github
39a2f10
over 2 years ago
raw
Copy download link
history
blame
contribute
delete
Safe
89 Bytes
export
function
sum
(
nums:
number
[]
):
number
{
return
nums.
reduce
(
(
a, b
) =>
a + b,
0
);
}