typical-arrays-problems

时间:2024-04-09 14:51:33
【文件属性】:

文件名称:typical-arrays-problems

文件大小:15KB

文件格式:ZIP

更新时间:2024-04-09 14:51:33

JavaScript

典型阵列问题 任务 使用数组时,有一些典型的问题,而您的目标是解决这个问题。 您应该实现3个函数: max , min和avg以搜索给定数组的最小值,最大值和平均值。 例如: min ( 1 , 2 , 3 , 4 ) // returns 1; max ( 1 , 2 , 3 , 4 ) // returns 4; avg ( 1 , 2 , 3 , 4 ) // returns 2.5; 请注意,如果未指定参数或传递了空数组,则应返回0 在`src / index.js中编写代码。所有测试用例均设计为“无错误”,因此不必担心会处理任何错误。 准备和测试 安装 分叉此存储库:Typical-arrays-problems 克隆您新创建的存储库: : <%your_github_username%> / typical-arrays-problems / 转到文件夹typical-a


【文件预览】:
typical-arrays-problems-main
----package.json(709B)
----package-lock.json(30KB)
----src()
--------index.js(530B)
----LICENSE(1KB)
----test.js(15KB)
----postinstall.js(488B)
----README.md(2KB)

网友评论