Solution: Write Code with a Unidirectional Channel
Check the solution of the challenge to use the unidirectional channel.
We'll cover the following...
Problem breakdown
Let’s break the problem statement into smaller parts and work on it. You are provided the next
function (basically, a generator pattern) to use in your code. It will provide the next Fibonacci values.
Create a function that uses “send only channel” and “number of Fibonacci terms required” as input parameters. The function uses ...