[PR #345] [CLOSED] Add Stooge Sort #685

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

📋 Pull Request Information

Original PR: https://github.com/TheAlgorithms/C/pull/345
Author: @erx-manaois
Created: 10/5/2019
Status: Closed

Base: masterHead: add-stooge-sort


📝 Commits (10+)

  • e8da4c7 Added solution to leetcode problem 190 in C
  • 5a6ed8e Added Solution to leetcode Problem 191
  • 1f88545 Added solution to Leetcode Problem 461
  • d2ad4b0 Revert "Added Solution to leetcode Problem 191"
  • 08f62bf Commented code to explain algorithms in 190 and 191
  • 972d4fa Merge pull request #327 from SaurusXI/master
  • aaa2546 Added commented solution to problem 461
  • d9b9bbd leetcode: Address readability of a few cases, and fix 283
  • 26ff845 Merge pull request #336 from SaurusXI/master
  • c6f1264 Merge pull request #337 from CertifiedBlyndGuy/master

📊 Changes

16 files changed (+166 additions, -40 deletions)

View changed files

📝 README.md (+1 -0)
📝 leetcode/README.md (+3 -0)
📝 leetcode/src/1189.c (+8 -8)
leetcode/src/190.c (+13 -0)
leetcode/src/191.c (+10 -0)
📝 leetcode/src/283.c (+6 -4)
leetcode/src/461.c (+12 -0)
📝 leetcode/src/617.c (+1 -1)
📝 leetcode/src/700.c (+5 -3)
📝 leetcode/src/704.c (+4 -3)
📝 leetcode/src/771.c (+9 -9)
📝 leetcode/src/82.c (+5 -3)
📝 leetcode/src/905.c (+2 -2)
📝 leetcode/src/938.c (+4 -4)
📝 leetcode/src/977.c (+4 -3)
sorting/StoogeSort.c (+79 -0)

📄 Description

Revised Readme.md to include stooge sort on the list
Added sorting/StoogeSort.c


🔄 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/345 **Author:** [@erx-manaois](https://github.com/erx-manaois) **Created:** 10/5/2019 **Status:** ❌ Closed **Base:** `master` ← **Head:** `add-stooge-sort` --- ### 📝 Commits (10+) - [`e8da4c7`](https://github.com/TheAlgorithms/C/commit/e8da4c7714fe2ae92f91e13d93dcce74b319bc7a) Added solution to leetcode problem 190 in C - [`5a6ed8e`](https://github.com/TheAlgorithms/C/commit/5a6ed8e245e7544fce060d92919a353393bfd064) Added Solution to leetcode Problem 191 - [`1f88545`](https://github.com/TheAlgorithms/C/commit/1f88545538b0a3f7e96a999748f0dee5d21af6cb) Added solution to Leetcode Problem 461 - [`d2ad4b0`](https://github.com/TheAlgorithms/C/commit/d2ad4b0109c02ca61e1f4f918d7ac3d66526b4f2) Revert "Added Solution to leetcode Problem 191" - [`08f62bf`](https://github.com/TheAlgorithms/C/commit/08f62bf39782a1b6b7a57a33a6de94bdbb991236) Commented code to explain algorithms in 190 and 191 - [`972d4fa`](https://github.com/TheAlgorithms/C/commit/972d4fad7ae85d300ef77f3bbdf83b1efcbd5a2f) Merge pull request #327 from SaurusXI/master - [`aaa2546`](https://github.com/TheAlgorithms/C/commit/aaa2546afa9081ce95df9db7118968274b05ff1c) Added commented solution to problem 461 - [`d9b9bbd`](https://github.com/TheAlgorithms/C/commit/d9b9bbd4f5f420554e3ad689a666579c8fef52a5) leetcode: Address readability of a few cases, and fix 283 - [`26ff845`](https://github.com/TheAlgorithms/C/commit/26ff845615599cb21edae35da9bdf2f117bf797c) Merge pull request #336 from SaurusXI/master - [`c6f1264`](https://github.com/TheAlgorithms/C/commit/c6f12642a1d3b0f365c2eb4a09db74b853397961) Merge pull request #337 from CertifiedBlyndGuy/master ### 📊 Changes **16 files changed** (+166 additions, -40 deletions) <details> <summary>View changed files</summary> 📝 `README.md` (+1 -0) 📝 `leetcode/README.md` (+3 -0) 📝 `leetcode/src/1189.c` (+8 -8) ➕ `leetcode/src/190.c` (+13 -0) ➕ `leetcode/src/191.c` (+10 -0) 📝 `leetcode/src/283.c` (+6 -4) ➕ `leetcode/src/461.c` (+12 -0) 📝 `leetcode/src/617.c` (+1 -1) 📝 `leetcode/src/700.c` (+5 -3) 📝 `leetcode/src/704.c` (+4 -3) 📝 `leetcode/src/771.c` (+9 -9) 📝 `leetcode/src/82.c` (+5 -3) 📝 `leetcode/src/905.c` (+2 -2) 📝 `leetcode/src/938.c` (+4 -4) 📝 `leetcode/src/977.c` (+4 -3) ➕ `sorting/StoogeSort.c` (+79 -0) </details> ### 📄 Description Revised Readme.md to include stooge sort on the list Added sorting/StoogeSort.c --- <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:14:34 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/C#685