Skip to content

Latest commit

 

History

History
 
 

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 

Count String Characters

Please write a program which counts and returns the numbers of each character in a string input by console.

count_characters( "abcdegabc" ) # { 'a':2, 'c':2, 'b':2, 'e':1, 'd':1, 'g':1 }