Skip to content

Instantly share code, notes, and snippets.

View kpeu3i's full-sized avatar
🕶️

Andrii kpeu3i

🕶️
View GitHub Profile
@kpeu3i
kpeu3i / main.go
Created April 29, 2020 19:08
Romanian to Arabic
package main
import (
"fmt"
"strings"
)
var romanNumerals = map[string]int{
"I": 1,
"IV": 4,
@kpeu3i
kpeu3i / main.go
Last active April 25, 2020 18:37
Stone, Scissors, Paper
package main
type Choice string
const (
Stone Choice = "STONE"
Scissors Choice = "SCISSORS"
Paper Choice = "PAPER"
)