098_bit_manipulation2.patch 336 B

123456789
  1. --- exercises/098_bit_manipulation2.zig 2023-10-03 22:15:22.125574535 +0200
  2. +++ answers/098_bit_manipulation2.zig 2023-10-05 20:04:07.286104520 +0200
  3. @@ -60,5 +60,5 @@
  4. // and if so, we know the given string is a pangram
  5. //
  6. // but what do we have to compare?
  7. - return bits == 0x..???;
  8. + return bits == 0x3ffffff;
  9. }