From b91658244d35bbb92d00dc7061a2e3dc507a5416 Mon Sep 17 00:00:00 2001 From: Tejas Bubane Date: Thu, 12 Mar 2020 15:33:15 +0530 Subject: [PATCH] Clarify resistor-color exercise tasks Ref: https://github.com/exercism/problem-specifications/pull/1645 --- exercises/resistor-color/README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/exercises/resistor-color/README.md b/exercises/resistor-color/README.md index 2ca4765a2a..930bc12af5 100644 --- a/exercises/resistor-color/README.md +++ b/exercises/resistor-color/README.md @@ -15,6 +15,10 @@ These colors are encoded as follows: - Grey: 8 - White: 9 +The goal of this exercise is to create a way: +- to look up the numerical value associated with a particular color band +- to list the different band colors + 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](https://en.wikipedia.org/wiki/Electronic_color_code)