{"id":20718410,"url":"https://github.com/neerajkumar161/kata-machine-primegen","last_synced_at":"2026-06-08T07:02:21.394Z","repository":{"id":191785085,"uuid":"684600315","full_name":"neerajkumar161/kata-machine-primegen","owner":"neerajkumar161","description":"Primegen Data Structures and Algorithms in TypeScript","archived":false,"fork":false,"pushed_at":"2023-09-04T16:29:59.000Z","size":70,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-12-25T19:09:42.411Z","etag":null,"topics":["arrays","data-structures","linked-list","typescript"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","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/neerajkumar161.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}},"created_at":"2023-08-29T13:23:00.000Z","updated_at":"2025-09-03T23:19:51.000Z","dependencies_parsed_at":"2025-03-11T07:44:56.242Z","dependency_job_id":"0720d85e-cfb8-4df9-9fb6-4c0e0b61eb59","html_url":"https://github.com/neerajkumar161/kata-machine-primegen","commit_stats":null,"previous_names":["neerajkumar161/kata-machine-primegen"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/neerajkumar161/kata-machine-primegen","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/neerajkumar161%2Fkata-machine-primegen","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/neerajkumar161%2Fkata-machine-primegen/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/neerajkumar161%2Fkata-machine-primegen/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/neerajkumar161%2Fkata-machine-primegen/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/neerajkumar161","download_url":"https://codeload.github.com/neerajkumar161/kata-machine-primegen/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/neerajkumar161%2Fkata-machine-primegen/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34051772,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-08T02:00:07.615Z","response_time":111,"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":["arrays","data-structures","linked-list","typescript"],"created_at":"2024-11-17T03:13:39.905Z","updated_at":"2026-06-08T07:02:21.359Z","avatar_url":"https://github.com/neerajkumar161.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"## Developed live on twitch\n[ThePrimeagen](https://twitch.tv/ThePrimeagen)\n\n## Naming\n### Lig-Machine\nLengthy Instrumentation Generating Massive Anticompetitive Computational Help for Intermediate Coders // n9\n\n### Ligmata\nLiteral Improvement Gaining Master and Tutelage on Algorithms\nLet's Intelligently Generate Multiple Algorithm Training Assessments // permdaddy\n\n### Sugma Nuts\nStudious Users Get Major Abilities. New Useful Training for Students\n\n### Ligma Farts\nLearn Intermediate Groundbreaking Massive Algorithms. Free Algorithm Research \u0026 Training System\n\n\n### If you have a suggestion\nmake an issue and we will come up with the potential name.\n\n### WARNING\nI have just started to add algorithms, so the number of supported algorithms is\nlimited at the moment, but will grow fairly quick.\n\n### WARNING\nOUT OF DATE.  We have quite a few more.  need to update\n### Supported Algorithm\n* Insertion sort\n* Merge sort\n* QuickSort\n* Prim's MST (Adjacency List)\n* Dijkstra's Shortest Path (Adjacency List)\n\n### Supported Data Structures\n* Singly linked list\n* Doubly linked list\n* Queue\n* Stack\n* Graph with Adjacency List\n* Graph with Adjacency Matrix (untested)\n\n### How It Works\n\nMake sure you have [Node.js](https://nodejs.org/en/) and yarn installed: `npm install --global yarn`\n\nclone the repo and install the dependencies\n\n```bash\nyarn install\n```\n\nedit the `ligma.config.js` file\n```javascript\nmodule.exports = {\n    dsa: [\n        \"InsertionSort\",\n        \"MergeSort\",\n        \"Queue\",\n        \"Stack\",\n        \"QuickSort\",\n        \"DijkstraList\",\n        \"PrimsList\",\n    ],\n}\n```\n\ncreate a day of katas, this will use the list in the `ligma.config.js`.\n```bash\nyarn generate\n```\n\nthis will progressively create folders named\n\n```\nsrc/day1\nsrc/day2\n...\n```\n\n`yarn generate` will also update the `tsconfig.json` and `jest.config` to point\nthe latest `day` folder via tspaths.  This allows us to avoid updating anything\nfor testing each day.\n\n#### Testing\n```\nyarn test\n```\n\nI have yet to create a testing strategy for next sets of algorithms, but we\nwill get there when i cross that bridge.\n\n### Help wanted\nA simple way to specify test, thinking something like `tests.json` and `cat\ntest.json 2\u003e /dev/null` to specify the tests to run.  tests.json wouldn't be\ncommitted.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fneerajkumar161%2Fkata-machine-primegen","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fneerajkumar161%2Fkata-machine-primegen","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fneerajkumar161%2Fkata-machine-primegen/lists"}