Skip to content

Instantly share code, notes, and snippets.

View orhanerday's full-sized avatar
🦆
Working from home

Orhan erday orhanerday

🦆
Working from home
View GitHub Profile
@orhanerday
orhanerday / main.go
Created December 4, 2022 07:49
very primitive neural network written in go
package main
import (
"fmt"
"math"
"math/rand"
"time"
)
// Neuron represents a single neuron in a neural network.
@orhanerday
orhanerday / main.go
Created September 20, 2023 14:01
Golang BFS algorithm
package main
import "fmt"
func main() {
graph := map[int][]int{
5: {3, 7},
3: {2, 4},
7: {8},
2: {},