mirror of
https://codeberg.org/ziglings/exercises.git
synced 2026-06-11 01:20:00 +00:00
add ex53 slices2
This commit is contained in:
20
patches/patches/53_slices2.patch
Normal file
20
patches/patches/53_slices2.patch
Normal file
@@ -0,0 +1,20 @@
|
||||
20,22c20,22
|
||||
< const base1: []u8 = scrambled[15..23];
|
||||
< const base2: []u8 = scrambled[6..10];
|
||||
< const base3: []u8 = scrambled[32..];
|
||||
---
|
||||
> const base1: []const u8 = scrambled[15..23];
|
||||
> const base2: []const u8 = scrambled[6..10];
|
||||
> const base3: []const u8 = scrambled[32..];
|
||||
25,27c25,27
|
||||
< const justice1: []u8 = scrambled[11..14];
|
||||
< const justice2: []u8 = scrambled[0..5];
|
||||
< const justice3: []u8 = scrambled[24..31];
|
||||
---
|
||||
> const justice1: []const u8 = scrambled[11..14];
|
||||
> const justice2: []const u8 = scrambled[0..5];
|
||||
> const justice3: []const u8 = scrambled[24..31];
|
||||
33c33
|
||||
< fn printPhrase(part1: []u8, part2: []u8, part3: []u8) void {
|
||||
---
|
||||
> fn printPhrase(part1: []const u8, part2: []const u8, part3: []const u8) void {
|
||||
Reference in New Issue
Block a user