{"id":19481997,"url":"https://github.com/parthjohri/dynamicprogramming","last_synced_at":"2025-11-20T07:01:34.679Z","repository":{"id":107183809,"uuid":"586072081","full_name":"ParthJohri/DynamicProgramming","owner":"ParthJohri","description":"This repository contains my code solutions for the dynamic programming problems in C++.","archived":false,"fork":false,"pushed_at":"2023-01-06T21:39:46.000Z","size":2,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-25T17:38:53.895Z","etag":null,"topics":["cpp","dynamicprogramming"],"latest_commit_sha":null,"homepage":"","language":null,"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/ParthJohri.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-01-06T21:38:21.000Z","updated_at":"2023-01-06T21:44:41.000Z","dependencies_parsed_at":null,"dependency_job_id":"b9f074c8-0570-4674-b812-e88ba9c814b0","html_url":"https://github.com/ParthJohri/DynamicProgramming","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ParthJohri/DynamicProgramming","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ParthJohri%2FDynamicProgramming","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ParthJohri%2FDynamicProgramming/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ParthJohri%2FDynamicProgramming/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ParthJohri%2FDynamicProgramming/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ParthJohri","download_url":"https://codeload.github.com/ParthJohri/DynamicProgramming/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ParthJohri%2FDynamicProgramming/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":285389437,"owners_count":27163377,"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-11-20T02:00:05.334Z","response_time":54,"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":["cpp","dynamicprogramming"],"created_at":"2024-11-10T20:07:54.634Z","updated_at":"2025-11-20T07:01:34.673Z","avatar_url":"https://github.com/ParthJohri.png","language":null,"readme":"# Dynamic Programming\n## [Fibonacci Series](https://leetcode.com/problems/fibonacci-number/)\n\n```cpp\nclass Solution {\npublic:\n    int fib(int n) {\n        vector\u003cint\u003e dp(n+5,0);\n        dp[0]=0;\n        dp[1]=1;\n        dp[2]=1;\n        dp[3]=2;\n        dp[4]=3;\n        for(int i=5;i\u003c=n;i++)\n            dp[i]=dp[i-1]+dp[i-2];\n        return dp[n];\n    }\n};\n```\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fparthjohri%2Fdynamicprogramming","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fparthjohri%2Fdynamicprogramming","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fparthjohri%2Fdynamicprogramming/lists"}