Skip to content

Instantly share code, notes, and snippets.

View alacret's full-sized avatar
😎
Conquering the World!

Angel Lacret alacret

😎
Conquering the World!
View GitHub Profile
@emre
emre / golang_binary_search.go
Last active October 13, 2020 23:10
binary search implementation on golang slices
package main
import (
"fmt"
)
func BinarySearch(target_map []int, value int) int {
start_index := 0
end_index := len(target_map) - 1