HacktoberFest icon indicating copy to clipboard operation
HacktoberFest copied to clipboard

An exclusive repository to make your first contribution to Open Source and HactoberFest 2022.

Results 36 HacktoberFest issues
Sort by recently updated
recently updated
newest added

This revert commit e31bfa09d380c9986e0c56f9cdaef6edbe78cc13.

Added a small game (sample project) to showcase folks that in this manner they can create new projects (small/big dosen't matter) and upload it Here.

The file contains bubble sort, selection sort, insertion sort, merge sort in detail.

Added algorithms like Quick sort and Merge sort in C++

please merge it and let me know

please merge it and let me know

#include #include using namespace std; int base2tobase10(int n){ int count=0, ans=0 ,rem ; while(n!=0){ rem=n%10; ans+=pow(2,count)*rem; count++; n/=10; } return ans; } int main(){ int n; coutn; cout

please add this repository to label as hacktoberfest-accepted thank you