{"id":28542631,"url":"https://github.com/jaysonvirissimo/practice-thy-algorithms","last_synced_at":"2025-10-03T23:57:08.437Z","repository":{"id":24704515,"uuid":"28116007","full_name":"jaysonvirissimo/practice-thy-algorithms","owner":"jaysonvirissimo","description":"Practice algorithms by making the tests pass in JavaScript, Python, and Ruby","archived":false,"fork":false,"pushed_at":"2025-09-24T05:19:51.000Z","size":509,"stargazers_count":45,"open_issues_count":1,"forks_count":14,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-09-24T06:18:27.045Z","etag":null,"topics":["algorithm","javascript","practice","practicing-algorithms","python","ruby"],"latest_commit_sha":null,"homepage":"","language":"Python","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/jaysonvirissimo.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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2014-12-17T01:48:36.000Z","updated_at":"2025-09-24T05:19:54.000Z","dependencies_parsed_at":"2025-08-14T00:11:33.563Z","dependency_job_id":"54931c85-23c9-460a-a6e4-f892ac8190bd","html_url":"https://github.com/jaysonvirissimo/practice-thy-algorithms","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/jaysonvirissimo/practice-thy-algorithms","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jaysonvirissimo%2Fpractice-thy-algorithms","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jaysonvirissimo%2Fpractice-thy-algorithms/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jaysonvirissimo%2Fpractice-thy-algorithms/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jaysonvirissimo%2Fpractice-thy-algorithms/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jaysonvirissimo","download_url":"https://codeload.github.com/jaysonvirissimo/practice-thy-algorithms/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jaysonvirissimo%2Fpractice-thy-algorithms/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278245387,"owners_count":25955016,"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-10-03T02:00:06.070Z","response_time":53,"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","javascript","practice","practicing-algorithms","python","ruby"],"created_at":"2025-06-09T20:35:00.119Z","updated_at":"2025-10-03T23:57:08.425Z","avatar_url":"https://github.com/jaysonvirissimo.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"This repository includes a series of tests that can be used for practicing algorithms in the _Javascript_, _Python_, and _Ruby_ programming languages.\nTo get started, clone this repo locally:\n```\ngit clone https://github.com/jaysonvirissimo/practice-thy-algorithms.git\n```\n\n## JavaScript Instructions\nMake sure you have the [npm](https://www.npmjs.com/) package manager installed.\nNavigate to the `JavaScript` directory and run `npm install`.\nThe problem statements are inside the appropriately named files in `lib`.\nThis is also where you write your own code.\nRun `npm test` when you are ready for some feedback on your attempt.\n\n## Python Instructions\nEnsure Python is installed.\nNavigate to the `Python` directory.\nAdd your solutions in the `lib` directory.\nRun the tests with `python -m unittest discover -s test`.\n\n## Ruby Instructions\nMake sure you have `bundler` installed.\nNavigate to the `Ruby` directory and run `bundle install`.\nThe problem statements are inside the appropriately named file in `lib`.\nThis is also where you write your own code.\nRun `rspec` when you are ready for some feedback on your attempt.\n\n## Problems\n| Name                            | JavaScript | Ruby | Python |\n|:-------------------------------:|:----------:|:----:|:------:|\n| Two Sum                         | x          | x    | x      |\n| Unique Paths                    | x          | x    | x      |\n| Coin Change                     | x          | x    | x      |\n| Contains Duplicate              | x          | x    | x      |\n| Best Time to Buy and Sell Stock | x          | x    | x      |\n| Valid Parentheses               | x          | x    | x      |\n| Maximum Subarray                | x          | x    | x      |\n| Product of Array Except Self    | x          | x    | x      |\n| Three Sum                       | x          | x    | x      |\n| Merge Intervals                 | x          | x    | x      |\n| Group Anagrams                  | x          | x    | x      |\n| Reverse Linked List             | x          | x    | x      |\n| Detect Cycle in Linked List     | x          | x    | x      |\n| Container With Most Water       | x          | x    | x      |\n| Find Minimum in Rotated Sorted Array | x          | x    | x      |\n| Longest Repeating Character Replacement | x          | x    | x      |\n| Longest Substring Without Repeating Characters | x          | x    | x      |\n| Number of Islands               | x          | x    | x      |\n| Remove Nth Node From End of List | x          | x    | x      |\n| Palindromic Substrings          | x          | x    | x      |\n| Pacific Atlantic Water Flow     | x          | x    | x      |\n| Minimum Window Substring        | x          | x    | x      |\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjaysonvirissimo%2Fpractice-thy-algorithms","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjaysonvirissimo%2Fpractice-thy-algorithms","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjaysonvirissimo%2Fpractice-thy-algorithms/lists"}