{"id":27456827,"url":"https://github.com/ericduran/algo_ds","last_synced_at":"2025-07-27T05:39:29.911Z","repository":{"id":137931512,"uuid":"116448255","full_name":"ericduran/algo_ds","owner":"ericduran","description":"Algorithms \u0026 Data Structures w/ JS","archived":false,"fork":false,"pushed_at":"2018-01-18T22:40:12.000Z","size":116,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-04-15T18:45:04.857Z","etag":null,"topics":["algorithm","data-structures","javascript"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ericduran.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2018-01-06T02:57:28.000Z","updated_at":"2018-01-17T17:19:09.000Z","dependencies_parsed_at":null,"dependency_job_id":"317cabd2-64a9-46f3-af35-cfdfb9a7d12c","html_url":"https://github.com/ericduran/algo_ds","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ericduran/algo_ds","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ericduran%2Falgo_ds","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ericduran%2Falgo_ds/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ericduran%2Falgo_ds/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ericduran%2Falgo_ds/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ericduran","download_url":"https://codeload.github.com/ericduran/algo_ds/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ericduran%2Falgo_ds/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267307553,"owners_count":24067049,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-07-27T02:00:11.917Z","response_time":82,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["algorithm","data-structures","javascript"],"created_at":"2025-04-15T18:29:48.495Z","updated_at":"2025-07-27T05:39:29.900Z","avatar_url":"https://github.com/ericduran.png","language":"JavaScript","readme":"# Algorithms \u0026amp; Data Structures\nRandom algorithms \u0026amp; data structures snippets\n\nThis is just a collection of random problems I've been doing.\n\nThis is currently a work in progress, and it's just a giant dump of what was on my computer.\n\nThe repo has a bunch of problems not currently listed in the readme.\n\nI'll be organizing it and adding more problems.\n\n| Problem        | Type           | File  |\n| -------------- |:---------------:| -----:|\n| [Find length of the largest region in Boolean Matrix](https://www.geeksforgeeks.org/find-length-largest-region-boolean-matrix/) | matrix | [matrix.largest-region.js](./matrix.largest-region.js) |\n| [Reverse a linked list](https://www.geeksforgeeks.org/reverse-a-linked-list/) | linked list | [linkedList.reverse-iterative.js](./linkedList.reverse-iterative.js) |\n| [Detect loop in a linked list](https://www.geeksforgeeks.org/detect-loop-in-a-linked-list/) | linked list | [linkedList.cycle.js](./linkedList.cycle.js) |\n| [A program to check if a binary tree is BST or not](https://www.geeksforgeeks.org/a-program-to-check-if-a-binary-tree-is-bst-or-not/) | tree | [tree.check-bst.js](./tree.check-bst.js) |\n| [Check if a binary tree is balance](https://www.geeksforgeeks.org/how-to-determine-if-a-binary-tree-is-balanced/) | tree | [tree.check-balance.js](./tree.check-balance.js) |\n| [Sorted Array to Balanced BST](https://www.geeksforgeeks.org/sorted-array-to-balanced-bst/) | tree | [tree.from-sorted-array.js](./tree.from-sorted-array.js) |\n| [Program to Check if a Given String is Palindrome](https://www.geeksforgeeks.org/c-program-check-given-string-palindrome/) | string | [string.palindrome.js](./string.palindrome.js) |\n| [Determine if a string has all Unique Characters](https://www.geeksforgeeks.org/determine-string-unique-characters/) | string | [string.unique.js](./string.unique.js) |\n| [Write a program to print all permutations of a given string](https://www.geeksforgeeks.org/write-a-c-program-to-print-all-permutations-of-a-given-string/) | string, permutation | [string.permutation.js](./string.permutation.js) |\n| [Implement a quick sort](https://www.geeksforgeeks.org/quick-sort/) | sorting | [sort.quicksort.js](./sort.quicksort.js) |\n| [Implement a Run Length Encoding](https://www.geeksforgeeks.org/run-length-encoding/) | string, encoding | [string.compress.js](./string.compress.js) |\n| [Implement a Queue](https://www.geeksforgeeks.org/queue-data-structure/) | queue | [queue.js](./queue.js) |\n| [Implement a Stack](https://www.geeksforgeeks.org/stack-data-structure-introduction-program/) | stack | [stack.js](./stack.js) |\n| [Count ways to reach the n’th stair](https://www.geeksforgeeks.org/count-ways-reach-nth-stair/) | dynamic programming | [dp.stairs.js](./dp.stairs.js) |\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fericduran%2Falgo_ds","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fericduran%2Falgo_ds","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fericduran%2Falgo_ds/lists"}