Files
freeCodeCamp/curriculum/challenges/russian/08-coding-interview-prep/rosetta-code/count-the-coins.russian.md

2.4 KiB
Raw Blame History

title, id, challengeType, forumTopicId, localeTitle
title id challengeType forumTopicId localeTitle
Count the coins 59713bd26bdeb8a594fb9413 5 302238 Подсчитайте монеты

Description

В американской валюте существует четыре типа обычных монет:

кварталы (25 центов), десять центов (10 центов), никель (5 центов) и пенни (1 цент)

Существует шесть способов внести изменения в 15 центов:

Копейка и никель Копейка и 5 пенни 3 никеля 2 никеля и 5 пенни Никель и 10 пенни 15 пенни Задача:

Внедрить функцию, чтобы определить, сколько способов внести изменения в доллар, используя эти общие монеты? (1 доллар = 100 центов).

Ссылка: алгоритм из MIT Press .

Instructions

Implement a function to determine how many ways there are to make change for a dollar using these common coins (1 dollar = 100 cents)

Tests

tests:
  - text: <code>countCoins</code> is a function.
    testString: assert(typeof countCoins === 'function');
  - text: <code>countCoints()</code> should return 242.
    testString: assert.equal(countCoins(), 242);

Challenge Seed

function countCoins() {
  // Good luck!
  return true;
}

Solution

function countCoins() {
  let t = 100;
  const operands = [1, 5, 10, 25];
  const targetsLength = t + 1;
  const operandsLength = operands.length;
  t = [1];

  for (let a = 0; a < operandsLength; a++) {
    for (let b = 1; b < targetsLength; b++) {
      // initialise undefined target
      t[b] = t[b] ? t[b] : 0;

      // accumulate target + operand ways
      t[b] += (b < operands[a]) ? 0 : t[b - operands[a]];
    }
  }

  return t[targetsLength - 1];
}