computing the frequency of occurrence of each character over a given alphabet
| 3 | /// computing the frequency of occurrence of each |
| 4 | /// character over a given alphabet |
| 5 | pub struct Count; |
| 6 | |
| 7 | impl Count { |
| 8 | pub fn compute(alphabet: &Alphabet, s: &str) -> Vec<usize> { |
nothing calls this directly
no outgoing calls
no test coverage detected