{"id":25178829,"url":"https://github.com/uedatakumi/ackermann_function","last_synced_at":"2026-05-07T14:48:52.561Z","repository":{"id":135123284,"uuid":"148993961","full_name":"uedatakumi/ackermann_function","owner":"uedatakumi","description":"Ackermann Function","archived":false,"fork":false,"pushed_at":"2019-08-22T15:40:04.000Z","size":2,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-08-14T05:36:54.000Z","etag":null,"topics":["c","haskell","ruby"],"latest_commit_sha":null,"homepage":"","language":"C","has_issues":false,"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/uedatakumi.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-09-16T12:35:19.000Z","updated_at":"2023-03-19T14:24:16.000Z","dependencies_parsed_at":"2023-05-24T08:00:19.316Z","dependency_job_id":null,"html_url":"https://github.com/uedatakumi/ackermann_function","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/uedatakumi/ackermann_function","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/uedatakumi%2Fackermann_function","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/uedatakumi%2Fackermann_function/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/uedatakumi%2Fackermann_function/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/uedatakumi%2Fackermann_function/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/uedatakumi","download_url":"https://codeload.github.com/uedatakumi/ackermann_function/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/uedatakumi%2Fackermann_function/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279013412,"owners_count":26085274,"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-12T02:00:06.719Z","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":["c","haskell","ruby"],"created_at":"2025-02-09T15:17:23.900Z","updated_at":"2025-10-12T23:41:23.565Z","avatar_url":"https://github.com/uedatakumi.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Ackermann function\n\n## Mathematical definition\n\n```\nack: N * N -\u003e N\n\nack(0, n) = n + 1\nack(m, 0) = ack(m - 1, 1)\nack(m, n) = ack(m - 1, ack(m, n - 1))\n```\n\n## Haskell\n\n```\n$ ghci ackermann.hs\n*Main\u003e ack 1 1\n3\n```\n\n## Ruby\n\n```\n$ irb\nirb(main):001:0\u003e load './ackermann.rb'\n=\u003e true\nirb(main):002:0\u003e ack(1, 1)\n=\u003e 3\n```\n\n## C\n\ncompile\n```\n$ gcc ackermann.c\n```\n\nexecution\n```\n$ ./a.out\nm = 1\nn = 1\nack(1, 1) = 3\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fuedatakumi%2Fackermann_function","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fuedatakumi%2Fackermann_function","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fuedatakumi%2Fackermann_function/lists"}