Signup or Login to not be a stranger πŸ˜Άβ€πŸŒ«οΈ

DESCRIPTION:

The main idea is to count all the occurring characters in a string. If you have a string like aba, then the result should be {'a': 2, 'b': 1}.

What if the string is empty? Then the result should be empty object literal, {}.