Skip to content

Instantly share code, notes, and snippets.

View muraray's full-sized avatar
🎯
Be Water, My Friend.

Murali Ramakrishnan muraray

🎯
Be Water, My Friend.
View GitHub Profile
@muraray
muraray / binarysearch.go
Last active September 26, 2017 10:58
Binary Search in Golang
package main
import "fmt"
func main() {
smallarray := []int{1, 4, 5, 5, 7, 9, 10, 12, 13, 15, 16, 17, 19, 22, 23, 27, 30, 32, 36, 39, 42, 44, 45, 46, 47, 50}
bigarray := []int{
1, 2, 3, 5, 6, 7, 8, 10, 11, 14, 15, 16, 18, 19, 21, 24, 25, 29, 30, 31, 32, 33, 35,