[PR #1259] [MERGED] feat: add LeetCode problem 69 #1856

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

📋 Pull Request Information

Original PR: https://github.com/TheAlgorithms/C/pull/1259
Author: @Asp-irin
Created: 5/9/2023
Status: Merged
Merged: 6/27/2023
Merged by: @Panquesito7

Base: masterHead: solution/69.c-2


📝 Commits (7)

  • 5b013e4 feat: add LeetCode problem 69
  • 12624a0 Update 69.c
  • 900f57f Update 69.c
  • 9c03bf8 Merge branch 'TheAlgorithms:master' into solution/69.c-2
  • 0e330b5 Update 69.c
  • e868eda Merge branch 'master' into solution/69.c-2
  • 62ff834 Merge branch 'master' into solution/69.c-2

📊 Changes

1 file changed (+23 additions, -0 deletions)

View changed files

leetcode/src/69.c (+23 -0)

📄 Description

Here is the code for the problem 69 of leetcode as there are many ways to do it we programmers need to find the most optimal way to solve a problem statement so i used binary-search approach inorder to solve it. All suggestions are accepted!!!

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/1259 **Author:** [@Asp-irin](https://github.com/Asp-irin) **Created:** 5/9/2023 **Status:** ✅ Merged **Merged:** 6/27/2023 **Merged by:** [@Panquesito7](https://github.com/Panquesito7) **Base:** `master` ← **Head:** `solution/69.c-2` --- ### 📝 Commits (7) - [`5b013e4`](https://github.com/TheAlgorithms/C/commit/5b013e41325bb45aa86204c1a1f91c3bd8904742) feat: add LeetCode problem 69 - [`12624a0`](https://github.com/TheAlgorithms/C/commit/12624a012965b1e03581c7137e238c8fd4e6ec79) Update 69.c - [`900f57f`](https://github.com/TheAlgorithms/C/commit/900f57ff1b405a989aeb3ec5ee13ff49e5ef5ce5) Update 69.c - [`9c03bf8`](https://github.com/TheAlgorithms/C/commit/9c03bf840dbff6697d9990c1279cb9f4af3ade45) Merge branch 'TheAlgorithms:master' into solution/69.c-2 - [`0e330b5`](https://github.com/TheAlgorithms/C/commit/0e330b547fc5e95fcb2170cc40aa6b02184d1032) Update 69.c - [`e868eda`](https://github.com/TheAlgorithms/C/commit/e868edab83189c28e2c9630390950a481bc28a5e) Merge branch 'master' into solution/69.c-2 - [`62ff834`](https://github.com/TheAlgorithms/C/commit/62ff834e9932e419a159bc7f7fa9a9f6a8f86e21) Merge branch 'master' into solution/69.c-2 ### 📊 Changes **1 file changed** (+23 additions, -0 deletions) <details> <summary>View changed files</summary> ➕ `leetcode/src/69.c` (+23 -0) </details> ### 📄 Description Here is the code for the problem 69 of leetcode as there are many ways to do it we programmers need to find the most optimal way to solve a problem statement so i used binary-search approach inorder to solve it. All suggestions are accepted!!! #### 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]. --> - [x] Added description of change - [x] Added file name matches [File name guidelines](https://github.com/TheAlgorithms/C/blob/master/CONTRIBUTING.md#File-Name-guidelines) - [x] Added tests and example, test must pass - [x] Relevant documentation/comments is changed or added - [x] PR title follows semantic [commit guidelines](https://github.com/TheAlgorithms/C/blob/master/CONTRIBUTING.md#Commit-Guidelines) - [x] Search previous suggestions before making a new one, as yours may be a duplicate. - [x] 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 --> --- <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:25:26 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/C#1856