Skip to content

Latest commit

 

History

History

count-characters-in-your-string

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

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, {}.