In this blog post I will describe how to count the letter frequency in a string. We will look at two implementations, one that uses an array and the ASCII code and another that uses a dictionary. The content is the same as in the last blog post except that we will use C++ 4.9.2 instead of Python 3.4. Continue reading
Tag Archives: letter
Counting the letter frequency in a string (Python 3.4)
In this blog post I will describe how to count the letter frequency in a string. We will look at two implementations, one that uses an array and the ASCII code and another that uses a dictionary. Continue reading