Skip to content

Instantly share code, notes, and snippets.

@Zazucki
Zazucki / monty2.go
Last active February 14, 2024 21:38 — forked from ryansturmer/monty2.py
Monty Hall Problem
// Monty Hall Problem Simulation (updated)
package main
import (
"fmt"
"math/rand"
"time"
)
@Zazucki
Zazucki / montyhall.go
Last active February 14, 2024 21:14 — forked from ryansturmer/montyhall.py
Go Simulation of the Monty Hall Problem for N-Doors
// Monty Hall Problem Simulation
package main
import (
"fmt"
"math/rand"
"time"
)