力扣刷题中常用的小技巧

 
Category: DSA

写在前面

去重

while (i && nums[i] == nums[i - 1]) ++i;

去除前导零

while (r - l > 1 && word[l] == '0') ++l;