I post things that I learned

Posts

My study journey

  • Leetcode study day 1

    Today, I have studied a leetcode problem

    I found this solution was really helpful:

    class Solution(object): def removeDuplicates(self, nums): """ :type nums: List[int] :rtype: int """ i = 0 while i < len(nums