An open API service indexing awesome lists of open source software.

https://github.com/debaghtk/lowleveldesign


https://github.com/debaghtk/lowleveldesign

design-patterns golang interview-preparation low-level-design object-oriented-design

Last synced: about 1 year ago
JSON representation

Awesome Lists containing this project

README

          

# Object Oriented Design and Design Patterns Practice

## SOLID Principles
| Principle | Status |
| --------------------- | ------ |
| Single Responsibility | ✅ |
| Open-Closed | ✅ |
| Liskov Substitution | ✅ |
| Interface Segregation | ✅ |
| Dependency Inversion | ✅ |

## Design Patterns
### Creational
| Pattern | Status |
| --------- | ------ |
| Factory | ⏳ |
| Singleton | ⏳ |
| Builder | ⏳ |
| Prototype | ⏳ |

### Structural
| Pattern | Status |
| --------- | ------ |
| Adapter | ⏳ |
| Decorator | ⏳ |
| Facade | ⏳ |

### Behavioral
| Pattern | Status |
| -------- | ------ |
| Observer | ⏳ |
| Strategy | ⏳ |
| State | ⏳ |

## Problems
| Problem | Status |
| ---------------------------------------------------- | ------ |
| Elevator Management System (State Pattern) | ⏳ |
| Order & Inventory Management System (Multithreading) | ⏳ |
| Text Editor/Word Processor (Flyweight Pattern) | ⏳ |
| Chess Game | ⏳ |
| Parking Lot System (Strategy Pattern) | ⏳ |
| Food Ordering & Rating System (Observer Pattern) | ⏳ |

## Learning Resources
### Online Courses
- [NeetCode OOD Interview Course](https://neetcode.io/courses/ood-interview/0)
- [NeetCode Design Patterns Course](https://neetcode.io/courses/design-patterns/1)
- [Coursera Software Design & Architecture Specialization](https://www.coursera.org/specializations/software-design-architecture)
- [Udemy Design Patterns in Go](https://www.udemy.com/course/design-patterns-go/)

### References & Guides
- [CodeZym Roadmap](https://codezym.com/roadmap)
- [Awesome Low Level Design](https://github.com/ashishps1/awesome-low-level-design)
- [Go Design Patterns](https://github.com/tmrts/go-patterns)
- [System Design Primer](https://github.com/donnemartin/system-design-primer)

## Legend
- ✅ Completed
- ⏳ In Progress
- ❌ Not Started