feat: Added Haskell and Go.

This commit is contained in:
Spencer Brower
2022-07-04 18:49:33 -04:00
parent dffa0a4c1b
commit 6ac20afead
19 changed files with 1346 additions and 0 deletions

15
go/math.go Normal file
View File

@@ -0,0 +1,15 @@
package risk
func min(a, b int) int {
if a < b {
return a
}
return b
}
func max(a, b int) int {
if a > b {
return a
}
return b
}