You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
resistor-color-duo was added in #808.
resistor-color-trio was added in #869.
Yet there is no resistor-color. I argue that there shouldn't be.
A reasonable solution might look like
```haskell
data Color = ...
deriving (Eq, Enum, Bounded)
colorCode :: Color -> Int
colorCode = fromEnum
colors :: [Color]
colors = [minBound..]
```
which makes it approximately as simple as the gigasecond exercise which
was marked as deprecated in #280 (decision made in #230). Still, if it
is simply missing, it will appear as an exercise that is potentially
implementable on https://tracks.exercism.io/haskell/master/unimplemented
Since a question was raised about this exercise once, marking it as
foregone will limit further requests made in vain.
Copy file name to clipboardExpand all lines: config.json
+3Lines changed: 3 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,9 @@
4
4
"blurb": "Haskell is a functional programming language which is pure and statically-typed. It's known for lazy evaluation, where evaluation is deferred until necessary, and its purity, where monads are used for working with side-effects.",
0 commit comments