This repository has been archived on 2024-08-19. You can view files and clone it, but cannot push or open issues or pull requests.
go-book/dup/dup1.go

27 lines
439 B
Go
Raw Normal View History

2024-08-13 20:31:39 +02:00
// Dup1 prints the text of each line that appears more than
// once in the standard input, preceeded by its count.
package main
import(
"bufio"
"fmt"
"os"
)
func main() {
counts := make(map[string]int)
input := bufio.NewScanner(os.Stdin)
for input.Scan() {
counts[input.Text()]++
}
//NOTE: ingnoring potential errors from input.Err()
for line, n := range counts {
if n > 1 {
fmt.Printf("%d\t%s\n", n , line)
}
}
}