Skip to content

Commit fb2ffce

Browse files
committed
new template format for readme
1 parent aab2692 commit fb2ffce

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed

src/template.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# Problem Name
2+
3+
## Problem Description
4+
5+
[LeetCode Link](problem_url)
6+
7+
Brief description of the problem.
8+
9+
## Approach
10+
11+
1. Step-by-step explanation
12+
2. Key insights
13+
3. Algorithm breakdown
14+
15+
## Complexity Analysis
16+
17+
- Time Complexity: `O(n)`
18+
- Space Complexity: `O(1)`
19+
20+
## Code Implementation
21+
22+
```python
23+
def solution():
24+
# Implementation
25+
```
26+
27+
## Test Cases
28+
29+
```python
30+
# Example test cases
31+
```
32+
33+
## Notes
34+
35+
Additional insights, alternative approaches, or learning points.

0 commit comments

Comments
 (0)