data-structure-and-algorithms
data-structure-and-algorithms copied to clipboard
Implement most data structures and algorithms in different programming languages.
Implement pascal triangle in any language inside Algorithms/Pascal folder. input: rows output: 1 1 1 1 2 1 1 3 3 1
Implement in C++.Java,Python.
Build a function that, given a number, reverses it without using strings. input: 12345 output: 54321
Build a function that checks weather a given number is a palindrome or not without using a strings. Implement it using any language. For example: input: 12321 output: true input:...
Implement Fibonacci sequence in any language. Recursive is appreciated.
Implement Kruskal's algorithm in any language.
solved fibonacci!!
Please review my pull request. Link below. https://github.com/ephremdeme/data-structure-and-algorithms/pull/175 [https://github.com/ephremdeme/data-structure-and-algorithms/pull/175](url) Create ReverseLineWordByWord #175
Implement GCD and LCM of two integers using any langauge