LeetCode题解(1089):复写列表中的零(Python)
题目:原题链接(简单)解法时间复杂度空间复杂度执行用时Ans 1 (Python)O(N2)O(N^2)O(N2)O(1)O(1)O(1)48ms (82.04%)Ans 2 (Python)O(N)O(N)O(N)O(1)O(1)O(1)44ms (91.02%)Ans 3 (Python)LeetCode的Python执行用时随缘,只要时间复杂度没有明显差异,执行用时一般都在同一个量级,仅作参考意义。解法一(使用列表的插入方法):de