k.go 95 B

12345
  1. package kata
  2. func MaxMultiple(divisor, bound int) int {
  3. return (bound / divisor) * divisor
  4. }