wangWking

Results 1 comments of wangWking

**solution** You can use `coords = last_coords.copy()` to create a deep copy of `last_coords` instead of a shallow copy. Change `coords = last_coords[:]` in the code to `coords = last_coords.copy()`...