hacktoberfest_2022 icon indicating copy to clipboard operation
hacktoberfest_2022 copied to clipboard

Make your first Pull Request on Hacktoberfest 2022. Don't forget to spread love and if you like give us a ⭐️contribute in this repo i will start accepting the pr from 14 of oct

Results 101 hacktoberfest_2022 issues
Sort by recently updated
recently updated
newest added
trafficstars

please merge/add my file to your repository with the label hacktoberfest. Happy Hacktoberfest-2022 bro 🎉

Added a **Bubble Sort Algorithm** in 2 Methods in **C++**.

Create N queen with explanation in comments.

Z-algo for pattern searching in short and simple explanations with Time complexity.

Sudoku Solver with proper comments and Time complexity.

In this pull request, I have added the code for insertion sort in cpp with comments. Insertion sort is one of the sorting algorithms with time complexity of O(n2) for...

class Solution { private: void dfs(int row, int col, vector&ans, vector& image, int newColor, int delRow[], int delCol[], int iniColor) { ans[row][col] = newColor; int n = image.size(); int m...