From 8fb5fbc13d875fbe5632fae1280ecb653ba88a35 Mon Sep 17 00:00:00 2001 From: Denis Smet Date: Sat, 10 Feb 2024 02:18:06 +0400 Subject: [PATCH] Remove unnecessary whitespace in book_2_3.clj An unnecessary whitespace following the huffman-message-encoded definition in book_2_3.clj was removed. This cleanup is part of ongoing efforts to improve the readability and maintainability of the code. --- src/sicp/chapter_2/part_3/book_2_3.clj | 1 - 1 file changed, 1 deletion(-) diff --git a/src/sicp/chapter_2/part_3/book_2_3.clj b/src/sicp/chapter_2/part_3/book_2_3.clj index a1b556a..50bc93e 100644 --- a/src/sicp/chapter_2/part_3/book_2_3.clj +++ b/src/sicp/chapter_2/part_3/book_2_3.clj @@ -307,7 +307,6 @@ 1 1 1 ; C 0)) ; A (def huffman-message-encoded '(:A :D :A :B :B :C :A)) - (def huffman-A '(0)) (def huffman-B '(1 0)) (def huffman-C '(1 1 1))