daily log 10.08.20
```python
```python
```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)...
Attempt 1, treating it like a Tree Node
Binary to Num:
CHALLENGE