{"id":24837228,"url":"https://github.com/letieu/sort-alg","last_synced_at":"2025-06-11T09:33:12.470Z","repository":{"id":231457273,"uuid":"781790251","full_name":"letieu/sort-alg","owner":"letieu","description":"Learn Sorting Algorithms","archived":false,"fork":false,"pushed_at":"2024-04-30T09:30:12.000Z","size":744,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-03-26T04:13:57.535Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Go","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/letieu.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":"2024-04-04T03:28:19.000Z","updated_at":"2024-07-23T09:48:29.000Z","dependencies_parsed_at":"2024-04-08T03:47:58.231Z","dependency_job_id":null,"html_url":"https://github.com/letieu/sort-alg","commit_stats":null,"previous_names":["letieu/sort-alg"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/letieu%2Fsort-alg","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/letieu%2Fsort-alg/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/letieu%2Fsort-alg/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/letieu%2Fsort-alg/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/letieu","download_url":"https://codeload.github.com/letieu/sort-alg/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/letieu%2Fsort-alg/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":259239112,"owners_count":22826863,"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","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":[],"created_at":"2025-01-31T05:53:36.780Z","updated_at":"2025-06-11T09:33:12.445Z","avatar_url":"https://github.com/letieu.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"```bash\n\n--- PASS: TestSort (0.00s)\n    --- PASS: TestSort/learn1/insertion.Sort (0.00s)\n        --- PASS: TestSort/learn1/insertion.Sort/Test_1 (0.00s)\n        --- PASS: TestSort/learn1/insertion.Sort/Test_2 (0.00s)\n        --- PASS: TestSort/learn1/insertion.Sort/Test_3 (0.00s)\n        --- PASS: TestSort/learn1/insertion.Sort/Test_4 (0.00s)\n        --- PASS: TestSort/learn1/insertion.Sort/Test_5 (0.00s)\n        --- PASS: TestSort/learn1/insertion.Sort/Test_6 (0.00s)\n        --- PASS: TestSort/learn1/insertion.Sort/Test_7 (0.00s)\n        --- PASS: TestSort/learn1/insertion.Sort/Test_8 (0.00s)\n    --- PASS: TestSort/learn1/selection.Sort (0.00s)\n        --- PASS: TestSort/learn1/selection.Sort/Test_1 (0.00s)\n        --- PASS: TestSort/learn1/selection.Sort/Test_2 (0.00s)\n        --- PASS: TestSort/learn1/selection.Sort/Test_3 (0.00s)\n        --- PASS: TestSort/learn1/selection.Sort/Test_4 (0.00s)\n        --- PASS: TestSort/learn1/selection.Sort/Test_5 (0.00s)\n        --- PASS: TestSort/learn1/selection.Sort/Test_6 (0.00s)\n        --- PASS: TestSort/learn1/selection.Sort/Test_7 (0.00s)\n        --- PASS: TestSort/learn1/selection.Sort/Test_8 (0.00s)\n    --- PASS: TestSort/learn1/bubble.Sort (0.00s)\n        --- PASS: TestSort/learn1/bubble.Sort/Test_1 (0.00s)\n        --- PASS: TestSort/learn1/bubble.Sort/Test_2 (0.00s)\n        --- PASS: TestSort/learn1/bubble.Sort/Test_3 (0.00s)\n        --- PASS: TestSort/learn1/bubble.Sort/Test_4 (0.00s)\n        --- PASS: TestSort/learn1/bubble.Sort/Test_5 (0.00s)\n        --- PASS: TestSort/learn1/bubble.Sort/Test_6 (0.00s)\n        --- PASS: TestSort/learn1/bubble.Sort/Test_7 (0.00s)\n        --- PASS: TestSort/learn1/bubble.Sort/Test_8 (0.00s)\n    --- PASS: TestSort/learn1/merge.Sort (0.00s)\n        --- PASS: TestSort/learn1/merge.Sort/Test_1 (0.00s)\n        --- PASS: TestSort/learn1/merge.Sort/Test_2 (0.00s)\n        --- PASS: TestSort/learn1/merge.Sort/Test_3 (0.00s)\n        --- PASS: TestSort/learn1/merge.Sort/Test_4 (0.00s)\n        --- PASS: TestSort/learn1/merge.Sort/Test_5 (0.00s)\n        --- PASS: TestSort/learn1/merge.Sort/Test_6 (0.00s)\n        --- PASS: TestSort/learn1/merge.Sort/Test_7 (0.00s)\n        --- PASS: TestSort/learn1/merge.Sort/Test_8 (0.00s)\n    --- PASS: TestSort/learn1/quick.Sort (0.00s)\n        --- PASS: TestSort/learn1/quick.Sort/Test_1 (0.00s)\n        --- PASS: TestSort/learn1/quick.Sort/Test_2 (0.00s)\n        --- PASS: TestSort/learn1/quick.Sort/Test_3 (0.00s)\n        --- PASS: TestSort/learn1/quick.Sort/Test_4 (0.00s)\n        --- PASS: TestSort/learn1/quick.Sort/Test_5 (0.00s)\n        --- PASS: TestSort/learn1/quick.Sort/Test_6 (0.00s)\n        --- PASS: TestSort/learn1/quick.Sort/Test_7 (0.00s)\n        --- PASS: TestSort/learn1/quick.Sort/Test_8 (0.00s)\nPASS\nok  \tlearn1\t0.087s\n\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fletieu%2Fsort-alg","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fletieu%2Fsort-alg","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fletieu%2Fsort-alg/lists"}