summaryrefslogtreecommitdiff
path: root/exercises/052_slices.zig
diff options
context:
space:
mode:
authorIbrahim Muftee <ibrahim@muftee.net>2026-06-29 15:11:40 -0500
committerIbrahim Muftee <ibrahim@muftee.net>2026-06-29 15:15:14 -0500
commitbdfe3df2947f8787c8a4ef8c534f6a8932e13871 (patch)
treef2df9a5f56b6c7f95c0978a861cb0ecf60560391 /exercises/052_slices.zig
parentd093f37e1e4c5aed4a4c8d4999001134aec251ca (diff)
feat: begin solving exercises
Diffstat (limited to 'exercises/052_slices.zig')
-rw-r--r--exercises/052_slices.zig6
1 files changed, 3 insertions, 3 deletions
diff --git a/exercises/052_slices.zig b/exercises/052_slices.zig
index af5930b..24dbb08 100644
--- a/exercises/052_slices.zig
+++ b/exercises/052_slices.zig
@@ -32,8 +32,8 @@ pub fn main() void {
var cards = [8]u8{ 'A', '4', 'K', '8', '5', '2', 'Q', 'J' };
// Please put the first 4 cards in hand1 and the rest in hand2.
- const hand1: []u8 = cards[???];
- const hand2: []u8 = cards[???];
+ const hand1: []u8 = cards[0..4];
+ const hand2: []u8 = cards[4..];
std.debug.print("Hand1: ", .{});
printHand(hand1);
@@ -43,7 +43,7 @@ pub fn main() void {
}
// Please lend this function a hand. A u8 slice hand, that is.
-fn printHand(hand: ???) void {
+fn printHand(hand: []u8) void {
for (hand) |h| {
std.debug.print("{u} ", .{h});
}