Comment on Python: copying a list the right wayComments−ricardobeat14yThis is analogous to javascript: b = a.slice() vs b = Array.apply(null, a) (the second is fastest and arguably clearer)
Comments
This is analogous to javascript:
vs (the second is fastest and arguably clearer)