Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/justin-pyne/coding-problems
A collection of my LeetCode solutions for Python data structure/algorithm problems and SQL problems, organized by language.
https://github.com/justin-pyne/coding-problems
algorithms leetcode leetcode-solutions python sql
Last synced: 5 days ago
JSON representation
A collection of my LeetCode solutions for Python data structure/algorithm problems and SQL problems, organized by language.
- Host: GitHub
- URL: https://github.com/justin-pyne/coding-problems
- Owner: justin-pyne
- Created: 2023-03-01T22:28:02.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2023-11-21T20:26:42.000Z (about 1 year ago)
- Last Synced: 2023-11-21T21:33:26.368Z (about 1 year ago)
- Topics: algorithms, leetcode, leetcode-solutions, python, sql
- Language: Python
- Homepage:
- Size: 89.8 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Coding Solutions
This repository contains my solutions to various LeetCode problems in both Python (data structure/algorithm problems) and SQL. The solutions are organized into folders according to the language used.
## Repository Structure
Inside the `python` and `SQL` folders, you will find files for each problem. The naming convention used for these files is as follows:(problem name) _ (tool used) _ (problem number).py/sql
For example, the TwoSum problem solution using dictionaries in Python is named `twoSum_Dict_1.py`.
## Naming Convention
- `problem name`: The name of the LeetCode problem (e.g., twoSum)
- `tool used`: The primary data structure or algorithm used to solve the problem (e.g., Dict for dictionaries).
- `problem number`: The LeetCode problem number (e.g., 1 for the TwoSum problem)My Leetcode profile can be found here:
https://leetcode.com/jpyne/