Skip to content

Add a basic directory structure and placeholder files #1

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Empty file.
5 changes: 5 additions & 0 deletions DSA/Algorithms/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Table of Contents

- [Dynamic Programming](DynamicProgramming/)
- [Searching](Searching/)
- [Sorting](Sorting/)
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
9 changes: 9 additions & 0 deletions DSA/DataStructures/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Table of Contents

[Array](Array/)
[Graph](Graph/)
[HashMap](HashMap/)
[LinkedList](LinkedList/)
[Queue](Queue/)
[Stack](Stack/)
[Tree](Tree/)
Empty file.
Empty file.
4 changes: 4 additions & 0 deletions DSA/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Table of Contents

- [Data Structures](DataStructures)
- [Algorithms](Algorithms)
Empty file.
Empty file.
Empty file added GeneralPurpose/Math/Math.txt
Empty file.
6 changes: 6 additions & 0 deletions GeneralPurpose/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Table of Contents

- [HigherOrderFunctions](HigherOrderFunctions/)
- [LanguageFundamentals](LanguageFundamentals/)
- [Math](Math/)
- [Recursion](Recursion/)
Empty file.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,8 @@
# InterviewCodingChallenges

Coding Challenges suitable for use as interview questions.

## Table of Contents

- [DSA](DSA/)
- [GeneralPurpose](GeneralPurpose/)