Skip to content

Commit

Permalink
Add missing left bracket.
Browse files Browse the repository at this point in the history
  • Loading branch information
teo-tsirpanis committed Jun 18, 2024
1 parent 8ca8f23 commit 5fdfb9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion format_spec/filters/dictionary_encoding.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ The Dictionary Encoding filter compresses losslessly string data by creating a s
As an example in pseudocode:

```
input_data = "HG543232", "HG543232", "HG543232", "HG54", "HG54", "A", "HG543232", "HG54"]
input_data = ["HG543232", "HG543232", "HG543232", "HG54", "HG54", "A", "HG543232", "HG54"]
# apply dictionary encoding ->
dictionary = ["HG543232", "HG54", "A"]
output_data = [0, 0, 0, 1, 1, 2, 0, 1]
Expand Down

0 comments on commit 5fdfb9d

Please sign in to comment.