Ad
  • Custom User Avatar

    a.remove(i) will only remove the first matching element.

    a = [1,2,2] so when b = [2], a will result in [1,2].

    a should result in [1].