Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/shivam-880/solve-for-x

Problem solving
https://github.com/shivam-880/solve-for-x

algorithms datastructures problems

Last synced: 10 days ago
JSON representation

Problem solving

Awesome Lists containing this project

README

        

# Solve For X
This repository maintains a list of projects that are solutions to common problems pertaining to data structure and algorithms for the purpose of learning in various languages.

# Solution Log

| S.No. | Problem | Date | Language|
|:------|:--------|:-----|:--------|
| 1. | [The Bomber Algorithm: I](https://github.com/codingkapoor/solve-for-x/tree/master/scala/problems#the-bomber-algorithm-i) | 2016-11-02 | Scala |
| 2. | [The Bomber Algorithm: II](https://github.com/codingkapoor/solve-for-x/tree/master/scala/problems#the-bomber-algorithm-ii) | 2016-12-04 | Scala |
| 3. | [The Bomber Algorithm: III](https://github.com/codingkapoor/solve-for-x/tree/master/scala/problems#the-bomber-algorithm-iii) | 2016-11-08 | Scala |
| 4. | [Kaeru Jump](https://github.com/codingkapoor/solve-for-x/tree/master/java/kaeru-jump) | 2016-11-13 | Java |
| 5. | [Merchant's Guide to Galaxy](https://github.com/codingkapoor/solve-for-x/tree/master/java/merchants-guide-to-galaxy) | 2016-11-17 | Java |
| 6. | [Page Selection By Keyword Matching: Part I](https://github.com/codingkapoor/solve-for-x/tree/master/scala/page-selection-by-keyword-matching-I-Y) | 2016-11-27 | Scala |
| 7. | [Page Selection By Keyword Matching: Part II](https://github.com/codingkapoor/solve-for-x/tree/master/scala/page-selection-by-keyword-matching-II-X) | 2016-12-05 | Scala |
| 8. | [Safe Traversal](https://github.com/codingkapoor/solve-for-x/blob/master/scala/problems/README.md#safe-traversal) | 2016-12-28 | Scala |
| 9. | [Spiral Matix](https://github.com/codingkapoor/solve-for-x/blob/master/java/problems/README.md#spiral-matrix) | 2016-12-29 | Java |
| 10. | [Point In Triangle](https://github.com/codingkapoor/solve-for-x/blob/master/java/problems/README.md#point-in-triangle) | 2016-12-29 | Java |
| 11. | [Cycle Detection in an Undirected Graph](https://github.com/iamsmkr/graph-algos) | 2021-03-02 | Scala |

# Other

|S.No.|Repository|Description|Language|
|:----|:---------|:----------|:-----------|
|1.|[99-scala-problems](https://github.com/codingkapoor/99-scala-problems)|Solutions and tests for Phil Gold's S-99: Ninety-Nine Scala Problems|Scala|
|2.|[scala-coding-bat](https://github.com/codingkapoor/scala-coding-bat)|Programming exercises on [Codingbat](http://codingbat.com/)|Scala|
|3.|[codility-scala](https://github.com/iamsmkr/codility-scala)|Programming lessons from [Codility](https://app.codility.com/programmers)|Scala|
|4.|[misc](https://github.com/iamsmkr/misc)|Misc algorithms|Scala|

# Todo
- [Levenshtein distance](https://en.wikipedia.org/wiki/Levenshtein_distance)
- [Even Tree](https://www.hackerrank.com/challenges/even-tree)