[PR #337] [MERGED] leetcode: Address readability of a few cases, and fix 283 #674

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

📋 Pull Request Information

Original PR: https://github.com/TheAlgorithms/C/pull/337
Author: @EyeCantCU
Created: 10/5/2019
Status: Merged
Merged: 10/5/2019
Merged by: @danghai

Base: masterHead: master


📝 Commits (1)

  • d9b9bbd leetcode: Address readability of a few cases, and fix 283

📊 Changes

10 files changed (+48 additions, -40 deletions)

View changed files

📝 leetcode/src/1189.c (+8 -8)
📝 leetcode/src/283.c (+6 -4)
📝 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)

📄 Description

The for loop utilized in 283 was improperly structured as 'start'
was no declared as the value to index.

Also, make the other cases more readable.


🔄 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/337 **Author:** [@EyeCantCU](https://github.com/EyeCantCU) **Created:** 10/5/2019 **Status:** ✅ Merged **Merged:** 10/5/2019 **Merged by:** [@danghai](https://github.com/danghai) **Base:** `master` ← **Head:** `master` --- ### 📝 Commits (1) - [`d9b9bbd`](https://github.com/TheAlgorithms/C/commit/d9b9bbd4f5f420554e3ad689a666579c8fef52a5) leetcode: Address readability of a few cases, and fix 283 ### 📊 Changes **10 files changed** (+48 additions, -40 deletions) <details> <summary>View changed files</summary> 📝 `leetcode/src/1189.c` (+8 -8) 📝 `leetcode/src/283.c` (+6 -4) 📝 `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) </details> ### 📄 Description The for loop utilized in 283 was improperly structured as 'start' was no declared as the value to index. Also, make the other cases more readable. --- <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:31 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/C#674