MCPcopy Create free account
hub / github.com/TheAlgorithms/Go / MeanUsingRightShift

Function MeanUsingRightShift

math/binary/arithmeticmean.go:19–21  ·  view source on GitHub ↗

MeanUsingRightShift This function finds arithmetic mean using right shift

(a int, b int)

Source from the content-addressed store, hash-verified

17
18// MeanUsingRightShift This function finds arithmetic mean using right shift
19func MeanUsingRightShift(a int, b int) int {
20 return (a + b) >> 1
21}

Callers 2

TestMeanUsingRightShiftFunction · 0.85

Calls

no outgoing calls

Tested by 2

TestMeanUsingRightShiftFunction · 0.68