[PR #653] [CLOSED] feat: Project Euler Problem #107 #1120

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

📋 Pull Request Information

Original PR: https://github.com/TheAlgorithms/C/pull/653
Author: @Daves1245
Created: 10/11/2020
Status: Closed

Base: masterHead: pe107


📝 Commits (7)

📊 Changes

3 files changed (+248 additions, -0 deletions)

View changed files

📝 DIRECTORY.md (+2 -0)
project_euler/problem_107/p107_network.txt (+40 -0)
project_euler/problem_107/sol1.c (+206 -0)

📄 Description

Description of Change

Add a solution to project euler problem 107 using Kruskal's algorithm.
I've followed the contribution guidelines to the best of my abilities, please lmk of any changes you would like to be made.
Thank you for your time!

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/653 **Author:** [@Daves1245](https://github.com/Daves1245) **Created:** 10/11/2020 **Status:** ❌ Closed **Base:** `master` ← **Head:** `pe107` --- ### 📝 Commits (7) - [`715dacc`](https://github.com/TheAlgorithms/C/commit/715dacc1dc354c2a13bf31ba048b891dd90b8191) Add project euler problem 107 - [`8c024f8`](https://github.com/TheAlgorithms/C/commit/8c024f8eed141c3a13b99576ff799c6efa1a3d98) updating DIRECTORY.md - [`f651f94`](https://github.com/TheAlgorithms/C/commit/f651f94d353e594537cddabc7009d85264f34d5e) fix documentation - [`4059277`](https://github.com/TheAlgorithms/C/commit/405927714f5243c1b7e1c26021f08ec111cf13cb) Merge branch 'pe107' of https://github.com/Daves1245/C into pe107 - [`67e24f4`](https://github.com/TheAlgorithms/C/commit/67e24f42cf2c3a11b780ff3b2af496002cc2ae71) Implement changes - [`4746900`](https://github.com/TheAlgorithms/C/commit/4746900e87b17fb95feb9a3e73ed42e63a06ee2d) fix typo - [`dfed8dd`](https://github.com/TheAlgorithms/C/commit/dfed8dde1c7bb1d5bb3a52f57b9a57634c616f3d) Apply suggestions from code review ### 📊 Changes **3 files changed** (+248 additions, -0 deletions) <details> <summary>View changed files</summary> 📝 `DIRECTORY.md` (+2 -0) ➕ `project_euler/problem_107/p107_network.txt` (+40 -0) ➕ `project_euler/problem_107/sol1.c` (+206 -0) </details> ### 📄 Description #### Description of Change Add a solution to project euler problem 107 using Kruskal's algorithm. I've followed the contribution guidelines to the best of my abilities, please lmk of any changes you would like to be made. Thank you for your time! <!-- 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 --> <a href="https://gitpod.io/#https://github.com/TheAlgorithms/C/pull/653"><img src="https://gitpod.io/api/apps/github/pbs/github.com/Daves1245/C.git/dfed8dde1c7bb1d5bb3a52f57b9a57634c616f3d.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:42 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/C#1120