Recent posts

daily log 10.07.20

2 minute read

```python Definition for singly-linked list. class ListNode(object): def init(self, val=0, next=None): self.val = val self.next = next class Solution(object)...