MUSoC / Visualization-of-popular-algorithms-in-Python

Visualization of popular algorithms using NetworkX Graph libray
204 stars 125 forks source link

assignment problem: TypeError: 'map' object is not subscriptable #40

Closed chakpongchung closed 3 years ago

chakpongchung commented 3 years ago

the code does not run in python 3

mrzero-0 commented 3 years ago

try using converting map to list forcefully list(map(int,list)) this way it will not show this error

chakpongchung commented 3 years ago

thanks!