This commit is contained in:
Joel Wetzell
2026-05-12 15:44:33 -05:00
parent 0e33d24fc7
commit e49a569c8e
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -14,7 +14,7 @@ func main() {
fmt.Printf("index\tenc\tdec\n")
for i := 0; i < len(encodedData); i++ {
for i := range encodedData {
decoded := decoder.Decode(encodedData[i])
fmt.Printf("%d\t%d\t%d\n", i, encodedData[i], decoded)
}