Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 757 Bytes

File metadata and controls

24 lines (17 loc) · 757 Bytes

Contributing

This is a personal practice repository, but suggestions and improvements are welcome.

Adding a Solution

  1. Place the solution in the correct category folder (LeetCode/, ChatGPT/, Interviews/, Other/)
  2. Follow the naming convention: XXXX. Problem Title/Language/NN. Problem Title.ext
  3. Keep each solution self-contained in a single file where possible
  4. Update the table in README.md if adding a new LeetCode problem

Code Style

  • JavaScript — plain ES6+, no frameworks
  • Python — standard library only, Python 3.x
  • C# — .NET standard, no external packages

Commit Messages

Use short, descriptive messages:

Add LeetCode 0001 Two Sum in Python
Add LeetCode 0042 Trapping Rain Water in JS