summaryrefslogtreecommitdiffstats
path: root/challenge/c06.go
diff options
context:
space:
mode:
Diffstat (limited to 'challenge/c06.go')
-rw-r--r--challenge/c06.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/challenge/c06.go b/challenge/c06.go
index 9e0d81d..025a29f 100644
--- a/challenge/c06.go
+++ b/challenge/c06.go
@@ -29,7 +29,7 @@ func crack(bs []byte, ks int) (string, string) {
blocks := lib.BreakIntoBlocks(bs, ks)
blocks = lib.TransposeBlocks(blocks, ks)
- key = ""
+ key := ""
for i := 0; i < len(blocks); i++ {
k := findKey(blocks[i])