From f993d5dffaabbf27556f361f2f3cd9e6e3eeb16f Mon Sep 17 00:00:00 2001 From: Josh Date: Mon, 13 Jan 2020 19:57:55 -0500 Subject: [PATCH] Add task description for clarity --- exercises/resistor-color/README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/exercises/resistor-color/README.md b/exercises/resistor-color/README.md index 2ca4765a2a..ab204b58d0 100644 --- a/exercises/resistor-color/README.md +++ b/exercises/resistor-color/README.md @@ -17,6 +17,8 @@ These colors are encoded as follows: 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. +Your task is to write a function that receives a color as input and returns the appropriate number. + 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) ## Setup