Hi, I'm working on the C++ Nucleotide Count problem, and the text states
For example:
"GATTACA" -> 'A': 3, 'C': 1, 'G': 1, 'T': 2
"INVALID" -> error```
What I am confused by is the first example with "GATTACA". Am I returning a string from my nucleotide counting function? Am I returning an unordered map? And what function signature do I use so that the tests can call the right function? Here is the link for the whole page <https://exercism.org/tracks/cpp/exercises/nucleotide-count/edit>. If it helps, I am more familiar using Hackerrank type questions where the function signature is already defined and all I have to do is fill out the code within the function.