Solution 2: Go Concurrency
Let’s solve the challenge set in the previous lesson.
We'll cover the following...
Solution
Here’s the concurrent version of wc(1)
that uses shared memory.
Dimitris, Tsoukalos, 2101112223, 1600665563 Mihalis, Tsoukalos, 2109416471, 1600665563 Jane, Doe, 0800123456, 1608559903
wc.go
Code explanation
The provided code implements a concurrent version of wc(1)
that utilizes shared memory to count characters, words, and lines in multiple files simultaneously. It employs a WaitGroup
mechanism to synchronize the ...