(код без описания)
Условие
Заголовок раздела «Условие»(код без описания)
// fan in / channel multiplexer / channel merge// takes all values from all input channels and writes them to the result channel// the pointer to the result channel must be obtained immediately// after all input channels close - the result channel must also be closedfunc merge(chans ...chan int) chan int { // write here}Решение
Заголовок раздела «Решение»Источник: Uzum - 1
← (код без описания) · Все задачи · Go · Conduct a code review, then fix the cod… →