Frederic G. MARAND e33fe15ec3 Resistor color. | 8 ماه پیش | |
---|---|---|
.. | ||
.exercism | 8 ماه پیش | |
.yarn | 8 ماه پیش | |
.eslintignore | 8 ماه پیش | |
.eslintrc.cjs | 8 ماه پیش | |
.yarnrc.yml | 8 ماه پیش | |
HELP.md | 8 ماه پیش | |
README.md | 8 ماه پیش | |
babel.config.cjs | 8 ماه پیش | |
jest.config.cjs | 8 ماه پیش | |
package.json | 8 ماه پیش | |
resistor-color.test.ts | 8 ماه پیش | |
resistor-color.ts | 8 ماه پیش | |
tsconfig.json | 8 ماه پیش |
Welcome to Resistor Color on Exercism's TypeScript Track.
If you need help running the tests or submitting your code, check out HELP.md
.
If you want to build something using a Raspberry Pi, you'll probably use resistors. For this exercise, you need to know two things about them:
To get around this problem, manufacturers print color-coded bands onto the resistors to denote their resistance values. Each band has a position and a numeric value.
The first 2 bands of a resistor have a simple encoding scheme: each color maps to a single number.
In this exercise you are going to create a helpful program so that you don't have to remember the values of the bands.
These colors are encoded as follows:
The goal of this exercise is to create a way:
Mnemonics map the colors to the numbers, that, when stored as an array, happen to map to their index in the array: Better Be Right Or Your Great Big Values Go Wrong.
More information on the color encoding of resistors can be found in the Electronic color code Wikipedia article.
Maud de Vries, Erik Schierboom - https://github.com/exercism/problem-specifications/issues/1458