mirror of
https://git.aramjonghu.dev/AramJonghu/ziglings.git
synced 2026-09-04 17:23:44 +02:00
10 lines
336 B
Diff
10 lines
336 B
Diff
--- exercises/101_bit_manipulation2.zig 2025-08-15 15:17:57.839348063 +0200
|
|
+++ answers/101_bit_manipulation2.zig 2026-04-02 10:51:15.797831382 +0200
|
|
@@ -60,5 +60,5 @@
|
|
// and if so, we know the given string is a pangram
|
|
//
|
|
// but what do we have to compare?
|
|
- return bits == 0x..???;
|
|
+ return bits == 0x3ffffff;
|
|
}
|