[PR #1221] [MERGED] feat: add Letter combinations of phone book problem (#17) #1814

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

📋 Pull Request Information

Original PR: https://github.com/TheAlgorithms/C/pull/1221
Author: @mindaugl
Created: 2/22/2023
Status: Merged
Merged: 2/28/2023
Merged by: @Panquesito7

Base: masterHead: solution/letter-combinations-of-a-phone-number


📝 Commits (8)

  • b3e4f07 feat: add Letter combinations of phone book problem (#17)
  • 945f272 Merge branch 'master' into solution/letter-combinations-of-a-phone-number
  • 442d664 fix: add newline at the end of the file
  • 3093a91 Merge branch 'master' into solution/letter-combinations-of-a-phone-number
  • 6a34bea Merge branch 'solution/letter-combinations-of-a-phone-number' of https://github.com/mindaugl/C into solution/letter-combinations-of-a-phone-number
  • 7125818 fix: add brief description of the algorithm
  • ab7da3d Merge branch 'master' into solution/letter-combinations-of-a-phone-number
  • 2d6a9df Merge branch 'master' into solution/letter-combinations-of-a-phone-number

📊 Changes

2 files changed (+79 additions, -0 deletions)

View changed files

📝 leetcode/DIRECTORY.md (+1 -0)
leetcode/src/17.c (+78 -0)

📄 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/1221 **Author:** [@mindaugl](https://github.com/mindaugl) **Created:** 2/22/2023 **Status:** ✅ Merged **Merged:** 2/28/2023 **Merged by:** [@Panquesito7](https://github.com/Panquesito7) **Base:** `master` ← **Head:** `solution/letter-combinations-of-a-phone-number` --- ### 📝 Commits (8) - [`b3e4f07`](https://github.com/TheAlgorithms/C/commit/b3e4f07e0827f60beca984fecb7bad40b3b8ff21) feat: add Letter combinations of phone book problem (#17) - [`945f272`](https://github.com/TheAlgorithms/C/commit/945f27294fe0fea4055a8e686e4214f6626139b3) Merge branch 'master' into solution/letter-combinations-of-a-phone-number - [`442d664`](https://github.com/TheAlgorithms/C/commit/442d664ac97203bcf01b3763c9cf104c2eb2bb56) fix: add newline at the end of the file - [`3093a91`](https://github.com/TheAlgorithms/C/commit/3093a9168243b9cd0ec57ea29592b265f0c75b00) Merge branch 'master' into solution/letter-combinations-of-a-phone-number - [`6a34bea`](https://github.com/TheAlgorithms/C/commit/6a34beaa10ad9d2ad02c4c71d110c0220d70354b) Merge branch 'solution/letter-combinations-of-a-phone-number' of https://github.com/mindaugl/C into solution/letter-combinations-of-a-phone-number - [`7125818`](https://github.com/TheAlgorithms/C/commit/7125818467127b8268511731e31a9046b9ad5b3d) fix: add brief description of the algorithm - [`ab7da3d`](https://github.com/TheAlgorithms/C/commit/ab7da3d35e236c9f4ed334792e10f65228706918) Merge branch 'master' into solution/letter-combinations-of-a-phone-number - [`2d6a9df`](https://github.com/TheAlgorithms/C/commit/2d6a9df19b925653e89735c37990243f10391afd) Merge branch 'master' into solution/letter-combinations-of-a-phone-number ### 📊 Changes **2 files changed** (+79 additions, -0 deletions) <details> <summary>View changed files</summary> 📝 `leetcode/DIRECTORY.md` (+1 -0) ➕ `leetcode/src/17.c` (+78 -0) </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 --> --- <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:24:54 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/C#1814