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
- Host: GitHub
- URL: https://github.com/michelbernardods/statistic-letter-counter
- Owner: michelbernardods
- Created: 2021-02-21T10:52:48.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2021-02-23T01:37:06.000Z (over 5 years ago)
- Last Synced: 2023-03-07T18:12:42.568Z (over 3 years ago)
- Topics: golang, golang-application
- Language: Go
- Homepage: https://www.linkedin.com/in/michel-bernardo/
- Size: 2.93 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```