HacktoberFest2022 icon indicating copy to clipboard operation
HacktoberFest2022 copied to clipboard

Results 11 HacktoberFest2022 issues
Sort by recently updated
recently updated
newest added

#include #include struct node { int data; struct node *next; }; struct node *head=NULL; struct node* getnewnode(int val) { struct node*temp; temp= (struct node*)malloc(sizeof(struct node)); temp->data=val; temp->next=NULL; return temp; }...

Printing Fibonacci Triangle with 'n' given rows

A simple C code for cartesian Product Of 2 sets

1. added a tree program on Huffman Encoding. 2. added a CPP program on constructing MEX array from the given array.

This is a program which checks whether a given number is twisted prime or not.

Added code in java to sort the array in wave form.

Added solution for the binary tree construction using inorder and postorder traversal