Documentation ¶
Overview ¶
Write a program that uses a fan out pattern to generate 100 random numbers concurrently. Have each goroutine generate a single random number and return that number to the main goroutine over a buffered channel. Set the size of the buffered channel so no send ever blocks. Don't allocate more capacity than you need. Have the main goroutine store each random number it receives in a slice. Print the slice values then terminate the program.
Click to show internal directories.
Click to hide internal directories.