Skip to content

Instantly share code, notes, and snippets.

@ilpropheta
Last active July 18, 2016 16:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ilpropheta/e0b0b83b1ab66ee793a41ca1ebfd3a42 to your computer and use it in GitHub Desktop.
Save ilpropheta/e0b0b83b1ab66ee793a41ca1ebfd3a42 to your computer and use it in GitHub Desktop.
array<int, 26> freq{}; // letter counters
for (auto c : str)
++freq[c - 'a'];
cout << "The most frequent letter is: " << char('a' + distance(begin(freq), max_element(begin(freq), end(freq))));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment