Skip to content

Commit f454fdb

Browse files
authored
Fixed missing imports on rotation cipher exercise (#449)
[no important files changed]
1 parent 5befef4 commit f454fdb

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

exercises/practice/rotational-cipher/rotational_cipher.zig

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
const std = @import("std");
2+
const mem = std.mem;
3+
14
pub fn rotate(allocator: mem.Allocator, text: []const u8, shiftKey: u5) mem.Allocator.Error![]u8 {
25
_ = allocator;
36
_ = text;

0 commit comments

Comments
 (0)