day 17a complete

This commit is contained in:
2021-12-17 22:33:26 +00:00
parent b2f39abd93
commit 8a8a1c0ebf
4 changed files with 128 additions and 0 deletions

15
shared/Math.go Normal file
View File

@ -0,0 +1,15 @@
package shared
func Max(x int, y int) int {
if x >= y {
return x
}
return y
}
func Min(x int, y int) int {
if x <= y {
return x
}
return y
}