Skip to content

Commit

Permalink
fix: Change file extension from .txt to markdown
Browse files Browse the repository at this point in the history
  • Loading branch information
Vishwajeet-29-pro committed Dec 4, 2024
1 parent 3a3990c commit 3f31baa
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 17 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Overview:
- The Builder Pattern is a creational design pattern that allows constructing complex objects step by step.
- It separates the construction of a complex object from its representation so that the same construction process can
create different representations.

Intent:
- Separate the construction of a complex object from its representation.
- Allow the same construction process to create different representations.
- Provide a clear and flexible way to build objects.

### Key Concepts:
- Builder Interface: Defines all the steps required to create the product.
- Concrete Builder: Implements the Builder interface and provides specific implementations of the steps to build the
product.
- Product: The complex object being built.
- Director: Constructs the product using the Builder interface.

This file was deleted.

0 comments on commit 3f31baa

Please sign in to comment.