diff --git a/README.md b/README.md index eb4c423..e29faa4 100644 --- a/README.md +++ b/README.md @@ -9,30 +9,30 @@ ### Repository Structure **The repository is organized into three main folders based on difficulty:** ``` -LeetCode-Solutions/ -├── easy/ -│ ├── [Problem ID]-problem-name.py -│ ├── ... -│ -├── medium/ -│ ├── [Problem ID]-problem-name.py -│ ├── ... -│ -├── hard/ -│ ├── [Problem ID]-problem-name.py -│ ├── ... -| -└── README.md +LeetCode/ + ├── easy/ + │ ├── [Problem ID]-problem-name.py + │ ├── ... + │ + ├── medium/ + │ ├── [Problem ID]-problem-name.py + │ ├── ... + │ + ├── hard/ + │ ├── [Problem ID]-problem-name.py + │ ├── ... + | + └── README.md ``` ## Easy -- [Roman to Integer](https://leetcode.com/problems/roman-to-integer/description/) - [Solution](13-roman-to-integer.md) -- [Find Closest Number to Zero](https://leetcode.com/problems/find-closest-number-to-zero/description/) - [Solution](2239-find-closest-number-to-zero.md) -- [Longest Common Prefix](https://leetcode.com/problems/longest-common-prefix/description/) - [Solution](14-longest-common-prefix.md) - [Running Sum of 1d Array](https://leetcode.com/problems/running-sum-of-1d-array/description/) - [Solution](1480-running-sum-of-1-d-array.md) -- [Number of Steps to Reduce a Number to Zero](https://leetcode.com/problems/number-of-steps-to-reduce-a-number-to-zero/description/) - [Solution](1342-number-of-steps-to-reduce-a-number-to-zero.md) - [Is Subsequence](https://leetcode.com/problems/is-subsequence/description/) - [Solution](392-is-subsequence.md) -- [Merge Strings Alternately](https://leetcode.com/problems/merge-strings-alternately/description/) - [Solution](1768-merge-strings-alternately.md) \ No newline at end of file +- [Roman to Integer](https://leetcode.com/problems/roman-to-integer/description/) - [Solution](13-roman-to-integer.md) +- [Merge Strings Alternately](https://leetcode.com/problems/merge-strings-alternately/description/) - [Solution](1768-merge-strings-alternately.md) +- [Longest Common Prefix](https://leetcode.com/problems/longest-common-prefix/description/) - [Solution](14-longest-common-prefix.md) +- [Find Closest Number to Zero](https://leetcode.com/problems/find-closest-number-to-zero/description/) - [Solution](2239-find-closest-number-to-zero.md) +- [Number of Steps to Reduce a Number to Zero](https://leetcode.com/problems/number-of-steps-to-reduce-a-number-to-zero/description/) - [Solution](1342-number-of-steps-to-reduce-a-number-to-zero.md) \ No newline at end of file diff --git a/index.html b/index.html index 7052e41..774e2eb 100644 --- a/index.html +++ b/index.html @@ -4,27 +4,27 @@

LeetCode Solutions

LeetCode is a website containing many algorithm questions. Most of them are real interview questions of Google, Facebook, LinkedIn, Apple, etc. and it always help to sharp our algorithm skills. This repo shows my solutions in Python. Hit the STAR to support this repo, thank you!

Repository Structure

The repository is organized into three main folders based on difficulty: -LeetCode-Solutions/ -├── easy/ -│ ├── [Problem ID]-problem-name.py -│ ├── ... -│ -├── medium/ -│ ├── [Problem ID]-problem-name.py -│ ├── ... -│ -├── hard/ -│ ├── [Problem ID]-problem-name.py -│ ├── ... -| -└── README.md

+LeetCode/ + ├── easy/ + │ ├── [Problem ID]-problem-name.py + │ ├── ... + │ + ├── medium/ + │ ├── [Problem ID]-problem-name.py + │ ├── ... + │ + ├── hard/ + │ ├── [Problem ID]-problem-name.py + │ ├── ... + | + └── README.md

Easy

\ No newline at end of file