mirror of
https://git.aramjonghu.dev/AramJonghu/ziglings.git
synced 2026-09-06 10:13:29 +02:00
changed the patch files that we can also use them with busybox for testing in Woodpecker
This commit is contained in:
@@ -1,10 +1,22 @@
|
||||
35,36c35,36
|
||||
< const hand1: []u8 = cards[???];
|
||||
< const hand2: []u8 = cards[???];
|
||||
---
|
||||
> const hand1: []u8 = cards[0..4];
|
||||
> const hand2: []u8 = cards[4..];
|
||||
46c46
|
||||
< fn printHand(hand: ???) void {
|
||||
---
|
||||
> fn printHand(hand: []u8) void {
|
||||
--- exercises/052_slices.zig 2023-10-03 22:15:22.122241138 +0200
|
||||
+++ answers/052_slices.zig 2023-10-05 20:04:07.079433985 +0200
|
||||
@@ -32,8 +32,8 @@
|
||||
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 @@
|
||||
}
|
||||
|
||||
// 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});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user