[PR #404] [CLOSED] HextoBin.c #778

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

📋 Pull Request Information

Original PR: https://github.com/TheAlgorithms/C/pull/404
Author: @dvk65
Created: 10/12/2019
Status: Closed

Base: masterHead: HextoBIN.c


📝 Commits (10+)

  • 6f50f4a Added a program that evaluates if two words are anagrams
  • 1e5afcc updated README.md
  • 80997b9 updated CodingGuidelines.md
  • 89069e2 updated CodingGuidelines.md
  • 4cd255d updated shellSort.c
  • 69a263b 7.c :reverse of a number with overflow check added
  • 19c2e93 9.c :pallindrome of a number with overflow check added
  • 15f4fb1 README.md updated
  • 59f998e 8.c: atoi implemented(used long int)
  • aaa2546 Added commented solution to problem 461

📊 Changes

33 files changed (+1072 additions, -137 deletions)

View changed files

📝 CodingGuidelines.md (+5 -2)
📝 README.md (+16 -2)
cipher/rc4.c (+189 -0)
conversions/HEXtoBIN.c (+71 -0)
data_structures/binary_trees/splay_tree.c (+138 -0)
📝 exercism/hello-world/hello_world.c (+7 -5)
📝 leetcode/README.md (+12 -2)
📝 leetcode/src/1189.c (+8 -8)
leetcode/src/2.c (+43 -0)
leetcode/src/21.c (+56 -0)
leetcode/src/28.c (+37 -0)
📝 leetcode/src/283.c (+6 -4)
📝 leetcode/src/35.c (+12 -0)
leetcode/src/4.c (+29 -0)
leetcode/src/461.c (+12 -0)
leetcode/src/476.c (+15 -0)
leetcode/src/5.c (+64 -0)
📝 leetcode/src/617.c (+1 -1)
leetcode/src/7.c (+53 -0)
📝 leetcode/src/700.c (+5 -3)

...and 13 more files

📄 Description

Another conversion. Hope this helps


🔄 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/404 **Author:** [@dvk65](https://github.com/dvk65) **Created:** 10/12/2019 **Status:** ❌ Closed **Base:** `master` ← **Head:** `HextoBIN.c` --- ### 📝 Commits (10+) - [`6f50f4a`](https://github.com/TheAlgorithms/C/commit/6f50f4a38b7b05a354bfc09c6a1404e22c4a5427) Added a program that evaluates if two words are anagrams - [`1e5afcc`](https://github.com/TheAlgorithms/C/commit/1e5afcc8e0d863d267e62a4c00b1f86d42000883) updated README.md - [`80997b9`](https://github.com/TheAlgorithms/C/commit/80997b94b08556fa9296aebe1777550ef95b03c3) updated CodingGuidelines.md - [`89069e2`](https://github.com/TheAlgorithms/C/commit/89069e2d5ece298489b2d5e3f34b7f891bde8882) updated CodingGuidelines.md - [`4cd255d`](https://github.com/TheAlgorithms/C/commit/4cd255d2902f000c10c54d81dbbb08062bda31ca) updated shellSort.c - [`69a263b`](https://github.com/TheAlgorithms/C/commit/69a263be3fa2b4f30bcb02ca90166a323dc5ce8c) 7.c :reverse of a number with overflow check added - [`19c2e93`](https://github.com/TheAlgorithms/C/commit/19c2e9369d32f41b10b2f7f50462352c3911c077) 9.c :pallindrome of a number with overflow check added - [`15f4fb1`](https://github.com/TheAlgorithms/C/commit/15f4fb19868ddf19723169223b7d1ad68fbfc0c6) README.md updated - [`59f998e`](https://github.com/TheAlgorithms/C/commit/59f998e13fb756743e077aa7e0f4afca92a085f2) 8.c: atoi implemented(used long int) - [`aaa2546`](https://github.com/TheAlgorithms/C/commit/aaa2546afa9081ce95df9db7118968274b05ff1c) Added commented solution to problem 461 ### 📊 Changes **33 files changed** (+1072 additions, -137 deletions) <details> <summary>View changed files</summary> 📝 `CodingGuidelines.md` (+5 -2) 📝 `README.md` (+16 -2) ➕ `cipher/rc4.c` (+189 -0) ➕ `conversions/HEXtoBIN.c` (+71 -0) ➕ `data_structures/binary_trees/splay_tree.c` (+138 -0) 📝 `exercism/hello-world/hello_world.c` (+7 -5) 📝 `leetcode/README.md` (+12 -2) 📝 `leetcode/src/1189.c` (+8 -8) ➕ `leetcode/src/2.c` (+43 -0) ➕ `leetcode/src/21.c` (+56 -0) ➕ `leetcode/src/28.c` (+37 -0) 📝 `leetcode/src/283.c` (+6 -4) 📝 `leetcode/src/35.c` (+12 -0) ➕ `leetcode/src/4.c` (+29 -0) ➕ `leetcode/src/461.c` (+12 -0) ➕ `leetcode/src/476.c` (+15 -0) ➕ `leetcode/src/5.c` (+64 -0) 📝 `leetcode/src/617.c` (+1 -1) ➕ `leetcode/src/7.c` (+53 -0) 📝 `leetcode/src/700.c` (+5 -3) _...and 13 more files_ </details> ### 📄 Description Another conversion. Hope this helps --- <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:15:12 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/C#778