diff options
author | Kjetil Orbekk <kj@orbekk.com> | 2021-11-28 13:03:48 -0500 |
---|---|---|
committer | Kjetil Orbekk <kj@orbekk.com> | 2021-11-28 13:03:48 -0500 |
commit | 17049953c08b7c783bf73fcb18ddbb7b05c8a671 (patch) | |
tree | 134b4db7e924b4cd803584bef1aef1c0de57d163 /exercism/emacs-lisp/binary/.exercism/config.json | |
parent | 65951ec5972aec2abbfc8d0dfa2a7227a0fa7223 (diff) |
add exercises
Diffstat (limited to 'exercism/emacs-lisp/binary/.exercism/config.json')
-rw-r--r-- | exercism/emacs-lisp/binary/.exercism/config.json | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/exercism/emacs-lisp/binary/.exercism/config.json b/exercism/emacs-lisp/binary/.exercism/config.json new file mode 100644 index 0000000..8515e32 --- /dev/null +++ b/exercism/emacs-lisp/binary/.exercism/config.json @@ -0,0 +1,19 @@ +{ + "blurb": "Convert a binary number, represented as a string (e.g. '101010'), to its decimal equivalent using first principles", + "authors": [ + "canweriotnow" + ], + "files": { + "solution": [ + "binary.el" + ], + "test": [ + "binary-test.el" + ], + "example": [ + ".meta/example.el" + ] + }, + "source": "All of Computer Science", + "source_url": "http://www.wolframalpha.com/input/?i=binary&a=*C.binary-_*MathWorld-" +} |