[PR #600] [MERGED] feat:Add Polynomial Addition #1047

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

📋 Pull Request Information

Original PR: https://github.com/TheAlgorithms/C/pull/600
Author: @Ankita19ms0010
Created: 9/4/2020
Status: Merged
Merged: 9/18/2020
Merged by: @Panquesito7

Base: masterHead: project1


📝 Commits (9)

📊 Changes

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

View changed files

📝 DIRECTORY.md (+1 -0)
misc/poly_add.c (+319 -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/600 **Author:** [@Ankita19ms0010](https://github.com/Ankita19ms0010) **Created:** 9/4/2020 **Status:** ✅ Merged **Merged:** 9/18/2020 **Merged by:** [@Panquesito7](https://github.com/Panquesito7) **Base:** `master` ← **Head:** `project1` --- ### 📝 Commits (9) - [`3f0b59d`](https://github.com/TheAlgorithms/C/commit/3f0b59de80ab4e42fe7ac7787f02caca80627977) feat:Add Polynomial Addition - [`cdaec3a`](https://github.com/TheAlgorithms/C/commit/cdaec3ae843c556e7adce3105e8d00e4fa84bb1f) Review changes - [`9a86123`](https://github.com/TheAlgorithms/C/commit/9a861235a7deed979dbf8e84397e987be5cd91f5) updating DIRECTORY.md - [`c0706c6`](https://github.com/TheAlgorithms/C/commit/c0706c651cb6c095d034ad13bddec5ecb73e9057) Apply suggestions from code review - [`607f565`](https://github.com/TheAlgorithms/C/commit/607f565a9c8835475a9bd8874468a7edc0541813) Corrected printing - [`77bd6a6`](https://github.com/TheAlgorithms/C/commit/77bd6a6964933422dd9bbddfabd09e83d69527de) file path fixed - [`db51c30`](https://github.com/TheAlgorithms/C/commit/db51c302a848f2c20e2e9584f41c30c0a76bc309) updating DIRECTORY.md - [`6aaaecb`](https://github.com/TheAlgorithms/C/commit/6aaaecbd51feba469662863ebc1d23db719956cf) Corrected free memory - [`287f645`](https://github.com/TheAlgorithms/C/commit/287f6459f3ff5fb44a03e6bf2106906ea5d52e87) Merge branch 'project1' of https://github.com/Ankita19ms0010/C into project1 ### 📊 Changes **2 files changed** (+320 additions, -0 deletions) <details> <summary>View changed files</summary> 📝 `DIRECTORY.md` (+1 -0) ➕ `misc/poly_add.c` (+319 -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-Plus-Plus/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 - [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 - [ ] 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) - [ ] 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/600"><img src="https://gitpod.io/api/apps/github/pbs/github.com/Ankita19ms0010/C.git/287f6459f3ff5fb44a03e6bf2106906ea5d52e87.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:04 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/C#1047