codezilla
codezilla copied to clipboard
⚡️ codezilla ⚡️ One giant 🦖 collection of algorithms & design patterns.
Please search if an issue has already be placed before adding another issue. If you want to add an algorithm to the repository. Please include the following in the issue....
IMPORTANT: Please do not create a Pull Request without creating an issue first. Any change needs to be discussed before proceeding. ## Description Added folder JumpSearch Added JumpSearch in Java...
## Description Added documentation to explain queues ## Related Issue Fixes #400 ## Types of changes What types of changes does your code introduce? Put an `x` in all the...
Please search if an issue has already be placed before adding another issue. If you want to add an algorithm to the repository. Please include the following in the issue....
Currently there's no documentation explaining what a queue data structure is. I'd like to work on this!
**Describe the bug** in __Maths/Factorial/C/factorial.c__: `scanf("%d",&n);` __n__ variable isn't declared `factorial` function is not called in main function **Expected behavior** `printf("Factorial = %lld", factorial(n));` should be added and declare `n`
**Describe the bug** in __Sorting/Bubble Sort/C/BubbleSort.c__ `int arr[] = {6, 4, 5, 8, 2, 1, 9};` `int n = sizeof(arr)/sizeof(arr[0]);` `scanf("%d",&n);` __
## Description Please describe what changes you have made. * Added a file named character_removal.py in String Manipulation/Character Removal/Python ## Related Issue Please link to the issue here: https://github.com/Asiatik/codezilla/issues/316 ##...
## Description Added non-optimized version of Bubble sort For Example: * Added a file(s) named *bubble_sort_nonOptimized_kindacoder.cpp* that implements non-optimized version of bubble sort * Added documentation to the algorithm #377...
## Description Added a file named BFS.java that implements BFS traversal in Java for connected graphs using adjacency matrix representation. ## Related Issue https://github.com/Asiatik/codezilla/issues/391 ## How Has This Been Tested?...