Recent Posts

DCGAN

5 minute read

DCGAN refer to github, YBIGTA DCGAN

Recursive

2 minute read

```python def word_split(phrase,list_of_words, output = None): ‘’’ Note: This is a very “python-y” solution. ‘’’ # Checks to see if any output h...

Binary Search Tree

3 minute read

```python class Node: def init(self,d): self.data = d self.left = None self.right = None