HacktoberFestContribute icon indicating copy to clipboard operation
HacktoberFestContribute copied to clipboard

Please note that contributions made to this repository are not counted as valid for Hacktoberfest 2021.

Results 192 HacktoberFestContribute issues
Sort by recently updated
recently updated
newest added

solve issue no: circular linked list.

#1259 Added code to Create Merge two sorted linked lists

I have uploaded the essential linked list functions like printing the node, deleting the node, inserting the node at the head, and inserting the node at the middle. Also I...

The implementation provides a complete and interactive experience with a circular linked list. Each method efficiently handles the circular nature of the list. It includes error handling for operations like...

This pull request implements a function that moves all zeroes in a given list to the end while maintaining the order of non-zero elements. The function iterates through the list,...

This program effectively uses a stack to reverse strings and provides a user-friendly interface that allows for repeated string reversal. It includes error handling for empty strings and guides the...

This code efficiently finds peaks in both 1D and 2D arrays using a divide-and-conquer approach, enhancing performance compared to a naive solution. It also robustly handles user input, ensuring the...