An open API service indexing awesome lists of open source software.

https://github.com/michelbernardods/statistic-letter-counter

Count the frequency of words with the same initials
https://github.com/michelbernardods/statistic-letter-counter

golang golang-application

Last synced: 9 months ago
JSON representation

Count the frequency of words with the same initials

Awesome Lists containing this project

README

          

# Count the frequency of words with the same initials

## How to run

```
go run statistic.go + text...
```

## Example

### Input

```
go run statistic.go Go or GoLang, as it is called, is a robust system-level language used for programming across large-scale network servers and big distributed systems.
```

### Output

```
Count of words started in each letter:
I = 3
F = 1
P = 1
O = 1
G = 2
R = 1
S = 3
U = 1
D = 1
A = 4
C = 1
L = 2
N = 1
B = 1
```