A compilation of algorithms, interviews questions and classic patterns - Nov 2020
- binary search | O (log n)
- quick sort | O (n log n)
- selection sort | O (n ** 2)
- Abstract Factory
- Builder
- Factory Method
- Prototype
- Singleton
- Adapter
- Bridge
- Composite
- Decorator
- Facade
- Flyweight
- Proxy
- Chain of Responibility
- Command
- Iterator
- Mediator
- Memento
- Observer
- State
- Strategy
- Template Method
- Visitor
This folder contains a README with some techniques and tips to solve code puzzles.
- Common elements in two sorted array solved in Python (TDD) and JS
- FizzBuzz solved in Python (TDD) and JS
- Palindrome solved un Python (TDD) and JS