al-go-rithms icon indicating copy to clipboard operation
al-go-rithms copied to clipboard

:musical_note: Algorithms written in different programming languages - https://zoranpandovski.github.io/al-go-rithms/

Results 86 al-go-rithms issues
Sort by recently updated
recently updated
newest added

Two pointer technique is used to find two numbers from the given array whose sum is given. This Algorithm search the two number in n*log(n) time while brute force method...

Socket Programming of client side implementation in C language. **Fixes issue:** #[Mention the issue number it fixes or add the details of the changes if it doesn't has a specific...

Just make new PR with an algorithm, data structures, ciphers, or puzzle implementation. Language doesn't matter. Follow the structure: https://github.com/ZoranPandovski/al-go-rithms#contribution If the implementation already exists follow the code structure and...

help wanted
hacktoberfest
good first issue

**This is a(n):** - [x] New algorithm - [ ] Update to an existing algorithm - [ ] Error - [ ] Proposal to the Repository **Details:** I would like...

hacktoberfest

**Approach:** This problem can be solved using dynamic programming. Let’s define the states of the DP first. DP[l][r] will be the minimum cost of merging the subarray arr[l…r] into one....

Just make new PR with an algorithm, data structures, ciphers, or puzzle implementation. Language doesn't matter. Follow the structure: https://github.com/ZoranPandovski/al-go-rithms#contribution If the implementation already exists follow the code structure and...

help wanted
hacktoberfest
good first issue

**This is a(n):** - [x] New algorithm - [ ] Update to an existing algorithm - [ ] Error - [ ] Proposal to the Repository **Details:** I would like...

hacktoberfest

**This is a(n):** - [x] New algorithm - [x] Update to an existing algorithm **Details:** efficient way to merge elements in the array by taking the minimum cost. Great interval...

hacktoberfest

added code for rainwater trapping in python with new technique two-pointers