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
- Host: GitHub
- URL: https://github.com/debaghtk/lowleveldesign
- Owner: debaghtk
- Created: 2024-10-29T09:06:08.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-10-29T09:10:46.000Z (over 1 year ago)
- Last Synced: 2025-02-09T09:29:19.601Z (over 1 year ago)
- Topics: design-patterns, golang, interview-preparation, low-level-design, object-oriented-design
- Language: Go
- Homepage:
- Size: 11.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
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