mirror of
https://codeberg.org/ziglings/exercises.git
synced 2026-06-11 09:29:59 +00:00
corrected @bitReverse for only 1 arg, instead of 2 args
This commit is contained in:
@@ -3,6 +3,6 @@
|
||||
---
|
||||
> const expected_result: u8 = 0b00010010;
|
||||
88c88
|
||||
< const tupni: u8 = @bitReverse(input);
|
||||
< const tupni: u8 = @bitReverse(input, tupni);
|
||||
---
|
||||
> const tupni: u8 = @bitReverse(u8, input);
|
||||
> const tupni: u8 = @bitReverse(input);
|
||||
|
||||
Reference in New Issue
Block a user