[PR #733] [CLOSED] [bug] Leetcode folder update #1232

Open
opened 2026-01-29 15:18:32 +00:00 by claunia · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/TheAlgorithms/C/pull/733
Author: @kvedala
Created: 10/30/2020
Status: Closed

Base: masterHead: leetcode


📝 Commits (10+)

📊 Changes

106 files changed (+1888 additions, -725 deletions)

View changed files

📝 .github/workflows/awesome_workflow.yml (+2 -2)
📝 CMakeLists.txt (+1 -0)
📝 DIRECTORY.md (+172 -86)
leetcode/CMakeLists.txt (+25 -0)
leetcode/problem_1/sol1.c (+69 -0)
📝 leetcode/problem_101/sol1.c (+0 -0)
📝 leetcode/problem_104/sol1.c (+0 -0)
📝 leetcode/problem_108/sol1.c (+0 -0)
📝 leetcode/problem_1089/sol1.c (+0 -0)
📝 leetcode/problem_109/sol1.c (+0 -0)
leetcode/problem_11/sol1.c (+83 -0)
📝 leetcode/problem_110/sol1.c (+0 -0)
📝 leetcode/problem_112/sol1.c (+0 -0)
📝 leetcode/problem_1184/sol1.c (+0 -0)
📝 leetcode/problem_1189/sol1.c (+0 -0)
leetcode/problem_12/sol1.c (+209 -0)
📝 leetcode/problem_1207/sol1.c (+0 -0)
📝 leetcode/problem_121/sol1.c (+0 -0)
📝 leetcode/problem_125/sol1.c (+0 -0)
📝 leetcode/problem_13/sol1.c (+40 -1)

...and 80 more files

📄 Description

Description of Change

References

Checklist

  • Added description of change
  • Added file name matches File name guidelines
  • Added tests and example, test must pass
  • Relevant documentation/comments is changed or added
  • PR title follows semantic commit guidelines
  • Search previous suggestions before making a new one, as yours may be a duplicate.
  • I acknowledge that all my contributions will be made under the project's license.

Notes:


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/TheAlgorithms/C/pull/733 **Author:** [@kvedala](https://github.com/kvedala) **Created:** 10/30/2020 **Status:** ❌ Closed **Base:** `master` ← **Head:** `leetcode` --- ### 📝 Commits (10+) - [`0257c6d`](https://github.com/TheAlgorithms/C/commit/0257c6dfab86f5b0b66e6ada41f85b6ada561dce) add leetcode folder to cmake - [`f993f14`](https://github.com/TheAlgorithms/C/commit/f993f140ba4352febff83da6eed3a3b1dff528b1) update leetcode bin filename - [`51f9b33`](https://github.com/TheAlgorithms/C/commit/51f9b3379f564fa3a79a33a949be0aa466c002a2) move files to individual folders - [`d0292af`](https://github.com/TheAlgorithms/C/commit/d0292af418a1d327215fbfdf30ec202ef44a3809) update bin filenames for leetcode & project euler - [`86676ac`](https://github.com/TheAlgorithms/C/commit/86676ac2103e81c59968f5e12897baada182c512) update prob 1 - [`f28213c`](https://github.com/TheAlgorithms/C/commit/f28213c3ee593a22cf432a152b80bbbd0e891cd8) fixed problem 2 - [`24154d8`](https://github.com/TheAlgorithms/C/commit/24154d890bf17093eaa8ca5be64e05b40840d63a) problem 3 - [`6e5518e`](https://github.com/TheAlgorithms/C/commit/6e5518e0d01cd262651873ba02ea36f0397eaef5) problem 4 - [`c683a6d`](https://github.com/TheAlgorithms/C/commit/c683a6dd12d86616a64f4bd24ea655f990c0b275) problem 7 - [`43463c6`](https://github.com/TheAlgorithms/C/commit/43463c64a1f56578fcbdfbb51077a9b4dd200caa) problem 8 ### 📊 Changes **106 files changed** (+1888 additions, -725 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/awesome_workflow.yml` (+2 -2) 📝 `CMakeLists.txt` (+1 -0) 📝 `DIRECTORY.md` (+172 -86) ➕ `leetcode/CMakeLists.txt` (+25 -0) ➕ `leetcode/problem_1/sol1.c` (+69 -0) 📝 `leetcode/problem_101/sol1.c` (+0 -0) 📝 `leetcode/problem_104/sol1.c` (+0 -0) 📝 `leetcode/problem_108/sol1.c` (+0 -0) 📝 `leetcode/problem_1089/sol1.c` (+0 -0) 📝 `leetcode/problem_109/sol1.c` (+0 -0) ➕ `leetcode/problem_11/sol1.c` (+83 -0) 📝 `leetcode/problem_110/sol1.c` (+0 -0) 📝 `leetcode/problem_112/sol1.c` (+0 -0) 📝 `leetcode/problem_1184/sol1.c` (+0 -0) 📝 `leetcode/problem_1189/sol1.c` (+0 -0) ➕ `leetcode/problem_12/sol1.c` (+209 -0) 📝 `leetcode/problem_1207/sol1.c` (+0 -0) 📝 `leetcode/problem_121/sol1.c` (+0 -0) 📝 `leetcode/problem_125/sol1.c` (+0 -0) 📝 `leetcode/problem_13/sol1.c` (+40 -1) _...and 80 more files_ </details> ### 📄 Description #### Description of Change <!-- Thank you for your Pull Request. Please provide a description above and review the requirements below. Contributors guide: https://github.com/TheAlgorithms/C/blob/master/CONTRIBUTING.md --> #### References <!-- Add any reference to previous pull-request or issue --> #### Checklist <!-- Remove items that do not apply. For completed items, change [ ] to [x]. --> - [ ] Added description of change - [ ] Added file name matches [File name guidelines](https://github.com/TheAlgorithms/C/blob/master/CONTRIBUTING.md#File-Name-guidelines) - [ ] Added tests and example, test must pass - [ ] Relevant documentation/comments is changed or added - [ ] PR title follows semantic [commit guidelines](https://github.com/TheAlgorithms/C/blob/master/CONTRIBUTING.md#Commit-Guidelines) - [ ] Search previous suggestions before making a new one, as yours may be a duplicate. - [ ] I acknowledge that all my contributions will be made under the project's license. Notes: <!-- Please add a one-line description for developers or pull request viewers --> <a href="https://gitpod.io/#https://github.com/TheAlgorithms/C/pull/733"><img src="https://gitpod.io/api/apps/github/pbs/github.com/kvedala/C.git/2c86fbb8abc6cefb35c0f910fa98170d312487b8.svg" /></a> <a href="https://gitpod.io/#https://github.com/TheAlgorithms/C/pull/733"><img src="https://gitpod.io/button/open-in-gitpod.svg"/></a> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
claunia added the pull-request label 2026-01-29 15:18:32 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/C#1232