[PR #599] [MERGED] feat: Project Euler Problem 5 - #162 #1041

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

📋 Pull Request Information

Original PR: https://github.com/TheAlgorithms/C/pull/599
Author: @kvedala
Created: 8/28/2020
Status: Merged
Merged: 9/3/2020
Merged by: @kvedala

Base: masterHead: 162


📝 Commits (8)

  • 2a9025a rename existing code as sol3
  • 1028333 Added naive implementation for Problem 5
  • 166cca9 Added a solution for Euler Problem 5 with easy improvements
  • c996b0e rename new files
  • 5e6cc59 code formatting
  • 41e9d61 update documentations
  • b3cce47 fix docs
  • 5c237b6 updating DIRECTORY.md

📊 Changes

4 files changed (+124 additions, -3 deletions)

View changed files

📝 DIRECTORY.md (+3 -1)
project_euler/problem_5/sol1.c (+48 -0)
project_euler/problem_5/sol2.c (+59 -0)
📝 project_euler/problem_5/sol3.c (+14 -2)

📄 Description

Description of Change

Abandoned #162 code revived and added.

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/599 **Author:** [@kvedala](https://github.com/kvedala) **Created:** 8/28/2020 **Status:** ✅ Merged **Merged:** 9/3/2020 **Merged by:** [@kvedala](https://github.com/kvedala) **Base:** `master` ← **Head:** `162` --- ### 📝 Commits (8) - [`2a9025a`](https://github.com/TheAlgorithms/C/commit/2a9025acaeb619a5b5ad0c4ef942e80a5bd503b0) rename existing code as sol3 - [`1028333`](https://github.com/TheAlgorithms/C/commit/10283335cbd88627369c8df2062de04baf140e9d) Added naive implementation for Problem 5 - [`166cca9`](https://github.com/TheAlgorithms/C/commit/166cca9b61d8142aa747b4886cda1e7d78dade35) Added a solution for Euler Problem 5 with easy improvements - [`c996b0e`](https://github.com/TheAlgorithms/C/commit/c996b0edaba4c02e4135de3530bc9abe8eac535c) rename new files - [`5e6cc59`](https://github.com/TheAlgorithms/C/commit/5e6cc595c33396635836e66afff97112e8366304) code formatting - [`41e9d61`](https://github.com/TheAlgorithms/C/commit/41e9d61f1766e90b26da10355c5eb3a6a12294ff) update documentations - [`b3cce47`](https://github.com/TheAlgorithms/C/commit/b3cce4739762aed795430c39c78c404f85aa566e) fix docs - [`5c237b6`](https://github.com/TheAlgorithms/C/commit/5c237b670f47dbe08aabc99a702f56319d0e5767) updating DIRECTORY.md ### 📊 Changes **4 files changed** (+124 additions, -3 deletions) <details> <summary>View changed files</summary> 📝 `DIRECTORY.md` (+3 -1) ➕ `project_euler/problem_5/sol1.c` (+48 -0) ➕ `project_euler/problem_5/sol2.c` (+59 -0) 📝 `project_euler/problem_5/sol3.c` (+14 -2) </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-Plus-Plus/CONTRIBUTING.md --> Abandoned #162 code revived and added. #### 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-Plus-Plus/blob/master/CONTRIBUTING.md#New-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-Plus-Plus/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 --> <a href="https://gitpod.io/#https://github.com/TheAlgorithms/C/pull/599"><img src="https://gitpod.io/api/apps/github/pbs/github.com/kvedala/C.git/5c237b670f47dbe08aabc99a702f56319d0e5767.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:17:01 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/C#1041