Skip to content

Instantly share code, notes, and snippets.

View tsak's full-sized avatar
💾

tsak

💾
View GitHub Profile
@tsak
tsak / keypad.go
Last active June 18, 2019 17:14
How long does it take to enter a number for a given keypad
package main
import "fmt"
type Keypad struct {
matrix [3][3]string
}
func NewKeypad(keypad string) Keypad {
var result Keypad