freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/rosetta-code/averages-pythagorean-means....

858 B

title id challengeType videoUrl localeTitle
Averages-Pythagorean means 594d966a1467eb84194f0086 5

Description

undefined

Instructions

undefined

Tests

tests:
  - text: ''
    testString: 'assert(typeof pythagoreanMeans === "function", "<code>pythagoreanMeans</code> is a function.");'
  - text: ''
    testString: 'assert.deepEqual(pythagoreanMeans(range1), answer1, "<code>pythagoreanMeans([1, 2, ..., 10])</code> should equal the same output above.");'

Challenge Seed

function pythagoreanMeans (rangeArr) {
  // Good luck!
}

After Test

console.info('after the test');

Solution

// solution required