freeCodeCamp/curriculum/challenges/russian/08-coding-interview-prep/rosetta-code/averages-root-mean-square.r...

1.7 KiB
Raw Blame History

title id challengeType videoUrl localeTitle
Averages-Root mean square 594da033de4190850b893874 5 Средние значения - средний квадрат

Description

Вычислите средний квадрат корня чисел от 1 до 10 включительно.

Корневой средний квадрат также известен по его инициалам RMS (или rms) и как квадратичное среднее.

RMS рассчитывается как среднее из квадратов чисел, с квадратным корнем:

$$ x _ {\ mathrm {rms}} = \ sqrt {{{x_1} ^ 2 + {x_2} ^ 2 + \ cdots + {x_n} ^ 2} \ over n}. $$

Instructions

Tests

tests:
  - text: <code>rms</code> - это функция.
    testString: 'assert(typeof rms === "function", "<code>rms</code> is a function.");'
  - text: '<code>rms([1, 2, 3, 4, 5, 6, 7, 8, 9, 10])</code> должны равняться <code>6.2048368229954285</code> .'
    testString: 'assert.equal(rms(arr1), answer1, "<code>rms([1, 2, 3, 4, 5, 6, 7, 8, 9, 10])</code> should equal <code>6.2048368229954285</code>.");'

Challenge Seed

function rms (arr) {
  // Good luck!
}

After Test

console.info('after the test');

Solution

// solution required