How to convert this string to dict in python ?
[[[0,1,2,2,3,3,3,3,3,4,4,4,5,5,6,6,6,5], [1,0,1,1,2,2,2,2,2,3,3,3,4,4,5,5,5,4], [2,1,0,0,1,1,1,1,1,2,2,2,3,3,4,4,4,3], [2,1,0,0,1,1,1,1,1,2,2,2,3,3,4,4,4,3], [3,2,1,1,0,0,0,0,0,1,1,1,2,2,3,3,3,2], [3,2,1,1,0,0,0,0,0,1,1,1,2,2,3,3,3,2], [3,2,1,1,0,0,0,0,0,1,1,1,2,2,3,3,3,2], [3,2,1,1,0,0,0,0,0,1,1,1,2,2,3,3,3,2], [3,2,1,1,0,0,0,0,0,1,1,1,2,2,3,3,3,2], [4,3,2,2,1,1,1,1,1,0,0,0,1,1,2,2,2,1], [4,3,2,2,1,1,1,1,1,0,0,0,1,1,2,2,2,1], [4,3,2,2,1,1,1,1,1,0,0,0,1,1,2,2,2,1], [5,4,3,3,2,2,2,2,2,1,1,1,0,0,1,1,1,0], [5,4,3,3,2,2,2,2,2,1,1,1,0,0,1,1,1,0], [6,5,4,4,3,3,3,3,3,2,2,2,1,1,0,0,0,0], [6,5,4,4,3,3,3,3,3,2,2,2,1,1,0,0,0,0], [6,5,4,4,3,3,3,3,3,2,2,2,1,1,0,0,0,0], [5,4,3,3,2,2,2,2,2,1,1,1,0,0,0,0,0,0]]]
it supposed to be like this
[[0,1,2,2,3,3,3,3,3,4,4,4,5,5,6,6,6,5], [1,0,1,1,2,2,2,2,2,3,3,3,4,4,5,5,5,4], [2,1,0,0,1,1,1,1,1,2,2,2,3,3,4,4,4,3], [2,1,0,0,1,1,1,1,1,2,2,2,3,3,4,4,4,3], [3,2,1,1,0,0,0,0,0,1,1,1,2,2,3,3,3,2], [3,2,1,1,0,0,0,0,0,1,1,1,2,2,3,3,3,2], [3,2,1,1,0,0,0,0,0,1,1,1,2,2,3,3,3,2], [3,2,1,1,0,0,0,0,0,1,1,1,2,2,3,3,3,2], [3,2,1,1,0,0,0,0,0,1,1,1,2,2,3,3,3,2], [4,3,2,2,1,1,1,1,1,0,0,0,1,1,2,2,2,1], [4,3,2,2,1,1,1,1,1,0,0,0,1,1,2,2,2,1], [4,3,2,2,1,1,1,1,1,0,0,0,1,1,2,2,2,1], [5,4,3,3,2,2,2,2,2,1,1,1,0,0,1,1,1,0], [5,4,3,3,2,2,2,2,2,1,1,1,0,0,1,1,1,0], [6,5,4,4,3,3,3,3,3,2,2,2,1,1,0,0,0,0], [6,5,4,4,3,3,3,3,3,2,2,2,1,1,0,0,0,0], [6,5,4,4,3,3,3,3,3,2,2,2,1,1,0,0,0,0], [5,4,3,3,2,2,2,2,2,1,1,1,0,0,0,0,0,0]]