Skip to content

Commit 8762b58

Browse files
committed
feat: Add samples for calculating the max.
1 parent 121ffb6 commit 8762b58

File tree

4 files changed

+49
-0
lines changed

4 files changed

+49
-0
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ So far, the following exercises have been covered:
88

99
- [Autocomplete](./autocomplete/) – implements an autocomplete feature using a trie
1010
- [Busfactor](./busfactor/) – calculates the the maximum load of a bus based on events
11+
- [Clever max](./clevermax/) – calculates the maximum of two numbers
1112
- [Cons, Car, Cdr & co.](./cons) – implements a cons cell and the corresponding functions
1213
- [Continous maximum](./continuousmax/) – calculates the maximum of a sliding window
1314
- [Floyd](./floyd/) – implements Floyd's cycle-finding "Tortoise and Hare" algorithm

clevermax/documentation.go

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
// Package clevermax calculates the maximum of two numbers.
2+
package clevermax

clevermax/max.go

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
package clevermax
2+
3+
import "math"
4+
5+
func abs(i int) int {
6+
return int(math.Sqrt(float64(i * i)))
7+
}
8+
9+
func Max(left, right int) int {
10+
return (left + right + abs(left-right)) / 2
11+
}
12+
13+
func MaxBitShift(left, right int) int {
14+
difference := left - right
15+
factor := difference >> 63
16+
17+
return left + factor*difference
18+
}

clevermax/max_test.go

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
package clevermax_test
2+
3+
import (
4+
"testing"
5+
6+
"github.com/stretchr/testify/assert"
7+
"github.com/thenativeweb/codingcircle/clevermax"
8+
)
9+
10+
func TestMax(t *testing.T) {
11+
t.Run("returns the larger number as maximum", func(t *testing.T) {
12+
assert.Equal(t, 42, clevermax.Max(23, 42))
13+
})
14+
15+
t.Run("returns the given number if both are equal", func(t *testing.T) {
16+
assert.Equal(t, 23, clevermax.Max(23, 23))
17+
})
18+
}
19+
20+
func TestMaxBitShift(t *testing.T) {
21+
t.Run("returns the larger number as maximum", func(t *testing.T) {
22+
assert.Equal(t, 42, clevermax.MaxBitShift(23, 42))
23+
})
24+
25+
t.Run("returns the given number if both are equal", func(t *testing.T) {
26+
assert.Equal(t, 23, clevermax.MaxBitShift(23, 23))
27+
})
28+
}

0 commit comments

Comments
 (0)