Loading collection data...
Collections are a way for you to organize kata so that you can create your own training routines. Every collection you create is public and automatically sharable with other warriors. After you have added a few kata to a collection you and others can train on the kata contained within the collection.
Get started now by creating a new collection.
This kata should be reranked, the use of negative numbers puts this above simple fundamentals
#Kata text ambiguous, consider instead
Title: Count individual character's occurances in your string
Description:
Count how many times each character(UTF-8) occurs in a given string and return an object literal.
Example: If you have string like this
'aba'
then the result should be{ 'a': 2, 'b': 1 }
Versus the current text which implies a grand-total of all characters that occur(exist,happen) instead of occur_ances_(event), then an example that countermands the first sentence.
Some occur alternatives to consider: amount,appearance,frequency,number of times,shows up