freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-33-digit-cancelling...

675 B

id challengeType title videoUrl localeTitle
5900f38d1000cf542c50fea0 5 Problem 33: Digit cancelling fractions

Description

undefined

Instructions

undefined

Tests

tests:
  - text: ''
    testString: 'assert.strictEqual(digitCancellingFractions(), 100, "<code>digitCancellingFractions()</code> should return 100.");'

Challenge Seed

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

digitCancellingFractions();

Solution

// solution required