|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"math/bits"
|
|
|
|
"reflect"
|
|
|
|
|
|
|
|
student "student"
|
|
|
|
|
|
|
|
"github.com/01-edu/public/go/tests/lib"
|
|
|
|
)
|
|
|
|
|
|
|
|
func reverseBits(octet byte) byte {
|
|
|
|
return bits.Reverse8(uint8(octet))
|
|
|
|
}
|
|
|
|
|
Refactor & Beautify & destruction commit
return early, remove else branches, reorder conditions and top-level functions, remove empty lines, remove unnecessary append(), fix typos, stop using testing package, remove dead code, fix mistakes in subjects, tests and solutions, remove disclaimers, reformat comments, simplify solutions, tests, add more instructions to subjects, remove obsolete files, etc.
Some of the reasons behind those modifications will be added to good-practices.en.md
Some of the exercises are now broken, they will have to be fixed, most of them have a "TODO:" comment.
5 years ago
|
|
|
func challengeBytes(fn1, fn2 interface{}, args ...interface{}) {
|
|
|
|
st1 := lib.Monitor(fn1, args)
|
|
|
|
st2 := lib.Monitor(fn2, args)
|
|
|
|
if !reflect.DeepEqual(st1.Results, st2.Results) {
|
|
|
|
lib.Fatalf("%s(%08b) == %08b instead of %08b\n",
|
Refactor & Beautify & destruction commit
return early, remove else branches, reorder conditions and top-level functions, remove empty lines, remove unnecessary append(), fix typos, stop using testing package, remove dead code, fix mistakes in subjects, tests and solutions, remove disclaimers, reformat comments, simplify solutions, tests, add more instructions to subjects, remove obsolete files, etc.
Some of the reasons behind those modifications will be added to good-practices.en.md
Some of the exercises are now broken, they will have to be fixed, most of them have a "TODO:" comment.
5 years ago
|
|
|
"ReverseBits",
|
|
|
|
args[0].(byte),
|
|
|
|
st1.Results[0].(byte),
|
|
|
|
st2.Results[0].(byte),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
Refactor & Beautify & destruction commit
return early, remove else branches, reorder conditions and top-level functions, remove empty lines, remove unnecessary append(), fix typos, stop using testing package, remove dead code, fix mistakes in subjects, tests and solutions, remove disclaimers, reformat comments, simplify solutions, tests, add more instructions to subjects, remove obsolete files, etc.
Some of the reasons behind those modifications will be added to good-practices.en.md
Some of the exercises are now broken, they will have to be fixed, most of them have a "TODO:" comment.
5 years ago
|
|
|
func main() {
|
|
|
|
args := []byte{0x26, 0x27, 0x28, 0x29, 0xAA, 0xBB}
|
|
|
|
|
|
|
|
for i := 0; i < 10; i++ {
|
|
|
|
n := lib.RandIntBetween(0, 255)
|
|
|
|
args = append(args, byte(n))
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, v := range args {
|
|
|
|
challengeBytes(student.ReverseBits, reverseBits, v)
|
|
|
|
}
|
|
|
|
}
|