Skip to content

Instantly share code, notes, and snippets.

View glbter's full-sized avatar
😊
Enjoying my life

Hlib Terentiev glbter

😊
Enjoying my life
View GitHub Profile
@glbter
glbter / binarySearch.go
Created August 30, 2021 09:49
Binary search in go slice
package main
import (
"fmt"
"math"
)
func main() {
sl := []int{1, 2, 3, 4, 5, 6, 7, 8, 9, 10}
fmt.Println(find(sl, 8))
@glbter
glbter / Gradient_descent.ipynb
Created April 14, 2021 13:36
jupiter notebook from Google Developer Student Club KPI lection about gradient based methods
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@glbter
glbter / Hamming-code.ipynb
Last active March 19, 2021 13:04
Hamming code - theory of information and encoding
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.