Newer
Older
exercism-cpp / hexadecimal / .exercism / config.json
@Wook Song Wook Song on 20 Oct 2022 739 bytes Easy: Add solutions for three exercises
{
  "blurb": "Convert a hexadecimal number, represented as a string (e.g. \"10af8c\"), to its decimal equivalent using first principles (i.e. no, you may not use built-in or external libraries to accomplish the conversion).",
  "authors": [
    "LegalizeAdulthood"
  ],
  "contributors": [
    "cyborgsphinx",
    "elyashiv",
    "jackhughesweb",
    "KevinWMatthews",
    "kytrinyx",
    "patricksjackson"
  ],
  "files": {
    "solution": [
      "hexadecimal.cpp",
      "hexadecimal.h"
    ],
    "test": [
      "hexadecimal_test.cpp"
    ],
    "example": [
      ".meta/example.cpp",
      ".meta/example.h"
    ]
  },
  "source": "All of Computer Science",
  "source_url": "http://www.wolframalpha.com/examples/NumberBases.html"
}