Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ab-noori/data-structures-and-algorithms
This repository features daily solutions for Algorithm and Data Structure problems, employing various programming languages and presenting diverse approaches to problem-solving.
https://github.com/ab-noori/data-structures-and-algorithms
algorithms data-structures data-structures-and-algorithms javascript ruby
Last synced: 3 months ago
JSON representation
This repository features daily solutions for Algorithm and Data Structure problems, employing various programming languages and presenting diverse approaches to problem-solving.
- Host: GitHub
- URL: https://github.com/ab-noori/data-structures-and-algorithms
- Owner: ab-noori
- License: mit
- Created: 2023-07-24T19:38:56.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-11-28T20:26:00.000Z (about 1 year ago)
- Last Synced: 2024-10-12T06:51:52.794Z (3 months ago)
- Topics: algorithms, data-structures, data-structures-and-algorithms, javascript, ruby
- Language: JavaScript
- Homepage:
- Size: 103 KB
- Stars: 18
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Data-Structures-and-Algorithms
This repository features daily solutions for Algorithm and Data Structure problems, employing various programming languages and presenting diverse approaches to problem-solving.## Algorithms & Data Structures:
### 📗 Ruby- 🏹 Practice
- 1
- 2
- 🛠 Problem solving
- [Graph](./problem-solving-rb/graph.rb)
- [Hash Table](./problem-solving-rb/hash_table)
- [Is it a binary tree](./problem-solving-rb/is-it-a-binary-search-tree.rb)
- [Compare Triplets](./problem-solving-rb/compare_triplets)
- [Array of Array Products](./problem-solving-rb/array_of_array_products.rb)### 📘 JavaScript
- 🏹 Practice
- [Linked List](practice-js/linked-list/LinkedList.js)
- 🛠 Problem solving
- [Graph](./problem-solving-js/graph.js)
- [Hash Table](./problem-solving-js/hashTable.js)
- [Is it a binary tree](./problem-solving-js/is-it-a-binary-search-tree.js)
- [Compare Triplets](./problem-solving-js/compareTriplets.js)
- [Array of Array Products](./problem-solving-js/arrayOfArrayProducts.js)
-
Longest Common Prefix
Solution
Description
-
Unique Number of Occurrences
Solution
Description