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

690 B

title id challengeType videoUrl localeTitle
Count the coins 59713bd26bdeb8a594fb9413 5

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

Solution

// solution required