Created
April 15, 2019 03:31
-
-
Save jeffotoni/6e50f04d4ed4716c88bd2fd2992abbad to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import "fmt" | |
func sum(s []int, c chan int) { | |
sum := 0 | |
for _, v := range s { | |
sum += v | |
} | |
c <- sum // send sum to c | |
} | |
func main() { | |
s := []int{7, 2, 8, -9, 4, 0} | |
c := make(chan int) | |
go sum(s[:len(s)/2], c) | |
go sum(s[len(s)/2:], c) | |
x, y := <-c, <-c // receive from c | |
fmt.Println(x, y, x+y) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment