Перейти к содержимому

(код без описания)

go · basicsUzum - 1не решено

(код без описания)

// 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 closed
func merge(chans ...chan int) chan int {
// write here
}

Источник: Uzum - 1

← (код без описания) · Все задачи · Go · Conduct a code review, then fix the cod… →