Spaces:
Configuration error
Configuration error
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,100 +1,10 @@
|
|
| 1 |
-
# DSA Portfolio
|
| 2 |
-
|
| 3 |
-
A modern personal DSA knowledge repository for documenting solved Data Structures & Algorithms problems.
|
| 4 |
-
|
| 5 |
-
---
|
| 6 |
-
|
| 7 |
-
# Features
|
| 8 |
-
|
| 9 |
-
- Dynamic JSON-based problem listing
|
| 10 |
-
- Search functionality
|
| 11 |
-
- Filter by topic/difficulty
|
| 12 |
-
- Dedicated explanation page for each problem
|
| 13 |
-
- Glassmorphism modern UI
|
| 14 |
-
- Fully responsive
|
| 15 |
-
- Tailwind CSS + Vanilla JavaScript
|
| 16 |
-
|
| 17 |
-
---
|
| 18 |
-
|
| 19 |
-
# Folder Structure
|
| 20 |
-
|
| 21 |
-
```bash
|
| 22 |
-
dsa-portfolio/
|
| 23 |
-
β
|
| 24 |
-
βββ index.html
|
| 25 |
-
βββ data.json
|
| 26 |
-
βββ README.md
|
| 27 |
-
β
|
| 28 |
-
βββ assets/
|
| 29 |
-
β βββ style.css
|
| 30 |
-
β
|
| 31 |
-
βββ problems/
|
| 32 |
-
β βββ subsets.html
|
| 33 |
-
```
|
| 34 |
-
|
| 35 |
-
---
|
| 36 |
-
|
| 37 |
-
# Adding New Problems
|
| 38 |
-
|
| 39 |
-
## Step 1
|
| 40 |
-
|
| 41 |
-
Create a new HTML file inside:
|
| 42 |
-
|
| 43 |
-
```bash
|
| 44 |
-
/problems/
|
| 45 |
-
```
|
| 46 |
-
|
| 47 |
-
Example:
|
| 48 |
-
|
| 49 |
-
```bash
|
| 50 |
-
/problems/two-sum.html
|
| 51 |
-
```
|
| 52 |
-
|
| 53 |
---
|
| 54 |
-
|
| 55 |
-
|
| 56 |
-
|
| 57 |
-
|
| 58 |
-
|
| 59 |
-
|
| 60 |
-
|
| 61 |
-
```json
|
| 62 |
-
{
|
| 63 |
-
"title": "Two Sum",
|
| 64 |
-
"difficulty": "Easy",
|
| 65 |
-
"topic": "Arrays",
|
| 66 |
-
"tags": ["HashMap"],
|
| 67 |
-
"dateSolved": "2026-05-08",
|
| 68 |
-
"platform": "LeetCode",
|
| 69 |
-
"url": "./problems/two-sum.html"
|
| 70 |
-
}
|
| 71 |
-
```
|
| 72 |
-
|
| 73 |
---
|
| 74 |
|
| 75 |
-
|
| 76 |
-
|
| 77 |
-
Use VS Code Live Server extension.
|
| 78 |
-
|
| 79 |
-
OR
|
| 80 |
-
|
| 81 |
-
Simply open `index.html`.
|
| 82 |
-
|
| 83 |
-
---
|
| 84 |
-
|
| 85 |
-
# Future Improvements
|
| 86 |
-
|
| 87 |
-
- Streak calendar
|
| 88 |
-
- Topic analytics
|
| 89 |
-
- Dark/light mode persistence
|
| 90 |
-
- Syntax highlighting
|
| 91 |
-
- Markdown notes support
|
| 92 |
-
- GitHub integration
|
| 93 |
-
|
| 94 |
-
---
|
| 95 |
-
|
| 96 |
-
# Tech Stack
|
| 97 |
-
|
| 98 |
-
- HTML5
|
| 99 |
-
- Tailwind CSS
|
| 100 |
-
- Vanilla JavaScript
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
title: DSA Tutorials
|
| 3 |
+
emoji: π
|
| 4 |
+
colorFrom: blue
|
| 5 |
+
colorTo: pink
|
| 6 |
+
sdk: static
|
| 7 |
+
pinned: false
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 8 |
---
|
| 9 |
|
| 10 |
+
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|