https://github.com/derektypist/project-euler-033
If the product of the four fractions is given in its lowest common terms, find the value of the denominator.
https://github.com/derektypist/project-euler-033
bootstrap5 css3 googlefonts html5 javascript projecteuler
Last synced: 7 months ago
JSON representation
If the product of the four fractions is given in its lowest common terms, find the value of the denominator.
- Host: GitHub
- URL: https://github.com/derektypist/project-euler-033
- Owner: derektypist
- Created: 2022-07-25T08:39:10.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-07-25T09:42:33.000Z (about 3 years ago)
- Last Synced: 2025-01-27T23:24:30.803Z (9 months ago)
- Topics: bootstrap5, css3, googlefonts, html5, javascript, projecteuler
- Language: HTML
- Homepage: https://derektypist.github.io/project-euler-033
- Size: 9.77 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Project Euler 033 - Digit Cancelling Fractions
The fraction 49/98 is a curious fraction, as an inexperienced mathematician in attempting to simplify it may incorrectly believe that 49/98 = 4/8, which is correct, is obtained by cancelling the 9s.
We shall consider fractions like, 30/50 = 3/5 to be trivial examples.
There are exactly four non-trivial examples of this type of fraction, less than one in value, and containing two digits in the numerator and denominator.
If the product of these four fractions is given in its lowest common terms, find the value of the denominator.
Information at [Project Euler 033](https://projecteuler.net/problem=33)
## UX
**Getting Started**
Click on the Show Solution button to show the solution. Click on the Hide Solution button to hide the solution.
**User Stories**
As a user, I can show or hide the solution.
As a user, I expect the function `digitCancellingFractions()` to return a number.
As a user, I expect the function `digitCancellingFractions()` to return 100.
**Information Architecture**
The function `digitCancellingFractions()` returns a number.
## Features
Allows the user to show or hide the solution to the problem as described in [Project Euler 033](https://projecteuler.net/problem=33).
## Technologies
Uses HTML5, CSS3, JavaScript, Bootstrap 5.2.0 and Google Fonts.
## Testing
Ensure all user stories have been met.
## Deployment
Deployed on [GitHub Pages](https://derektypist.github.io/project-euler-033) at the main branch.
## Credits
### Content
Written by me.
### Acknowledgements
- [Project Euler](https://projecteuler.net)
- [FreeCodeCamp](https://www.freecodecamp.org)