mirror of
https://github.com/jwetzell/bmip10-go.git
synced 2026-08-16 04:43:30 +00:00
go fix
This commit is contained in:
@@ -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)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user