summaryrefslogtreecommitdiffstats
path: root/challenge/c02.go
diff options
context:
space:
mode:
authorrsiddharth <s@ricketyspace.net>2021-02-24 20:17:52 -0500
committerrsiddharth <s@ricketyspace.net>2021-02-24 20:17:52 -0500
commit40781a94bcf7f3fadf6f8a0bb94b42bd11cab6e5 (patch)
tree3c95a9c3f7bd2ead5d244315631999013be064c4 /challenge/c02.go
parentc35eb556136a35a5aa1f4e9371428a4c4cb7fdbd (diff)
challenge: remove blank lines
Diffstat (limited to 'challenge/c02.go')
-rw-r--r--challenge/c02.go1
1 files changed, 0 insertions, 1 deletions
diff --git a/challenge/c02.go b/challenge/c02.go
index bcbd690..2d9d69c 100644
--- a/challenge/c02.go
+++ b/challenge/c02.go
@@ -13,7 +13,6 @@ func C2() {
a := "1c0111001f010100061a024b53535009181c"
b := "686974207468652062756c6c277320657965"
c := lib.FixedXOR(a, b)
-
fmt.Printf("XOR(%v ^ %v) = %v\n", a, b, c)
}