{"id":20407783,"url":"https://github.com/josephakaro/30-days_of_algorithms","last_synced_at":"2026-04-14T18:34:15.111Z","repository":{"id":233497587,"uuid":"787075314","full_name":"josephakaro/30-Days_of_Algorithms","owner":"josephakaro","description":"Creating a structured 30-day challenge to learn data structures and algorithms is a fantastic idea! Checkout the README.md for in-depth guideline. ","archived":false,"fork":false,"pushed_at":"2024-04-16T09:20:05.000Z","size":4,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-10T09:43:21.074Z","etag":null,"topics":["30-days-of-code","30daysofcode","algorithm","algorithms","algorithms-and-data-structures","data-structures","python","python3"],"latest_commit_sha":null,"homepage":"https://30daysofcode.josephakaro.tech","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/josephakaro.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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-15T20:58:33.000Z","updated_at":"2025-05-27T17:09:50.000Z","dependencies_parsed_at":null,"dependency_job_id":"70aa9d44-916d-4df1-993e-d009a4e1b7f8","html_url":"https://github.com/josephakaro/30-Days_of_Algorithms","commit_stats":null,"previous_names":["josephakaro/30-days_of_algorithms"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/josephakaro/30-Days_of_Algorithms","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/josephakaro%2F30-Days_of_Algorithms","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/josephakaro%2F30-Days_of_Algorithms/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/josephakaro%2F30-Days_of_Algorithms/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/josephakaro%2F30-Days_of_Algorithms/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/josephakaro","download_url":"https://codeload.github.com/josephakaro/30-Days_of_Algorithms/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/josephakaro%2F30-Days_of_Algorithms/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31810738,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-14T18:05:02.291Z","status":"ssl_error","status_checked_at":"2026-04-14T18:05:01.765Z","response_time":153,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["30-days-of-code","30daysofcode","algorithm","algorithms","algorithms-and-data-structures","data-structures","python","python3"],"created_at":"2024-11-15T05:26:16.093Z","updated_at":"2026-04-14T18:34:15.095Z","avatar_url":"https://github.com/josephakaro.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# Week 1: Introduction to Data Structures and Algorithms\n\n## `Day 1:` Introduction to Data Structures and Algorithms\n    Overview of basic terminology, importance, and applications\n\n## `Day 2:` Arrays and Strings\n    Understanding arrays and strings\n    Operations, common problems, and their solutions\n\n## `Day 3:` Linked Lists\n    Types of linked lists (singly, doubly, circular)\n    Implementations and common operationsDay 4: Stacks and Queues\n    Understanding stacks and queues\n    Implementations, operations, and real-world applications\n\n## `Day 5:` Recursion\n    Understanding recursion and recursive algorithms\n    Examples and practice problems\n\n## `Day 6:` Time Complexity Analysis\n    Big O notation and analyzing algorithmic complexity\n    Best, worst, and average-case time complexities\n\n## `Day 7:` Space Complexity Analysis\n    Analyzing space complexity of algorithms\n    Examples and practice problems\n\n# Week 2: Sorting and Searching Algorithms\n\n## `Day 8:` Bubble Sort and Selection Sort\n    Understanding basic sorting algorithms\n    Implementations, complexities, and optimizations\n\n## `Day 9:` Insertion Sort and Merge Sort\n    Understanding more efficient sorting algorithms\n    Implementations, complexities, and comparisons\n\n## `Day 10:` Quick Sort\n    Understanding the Quick Sort algorithm\n    Partitioning, complexities, and optimizations\n\n## `Day 11:` Heap Sort\n    Understanding the Heap Sort algorithm\n    Heap data structure, operations, and complexities\n\n## `Day 12:` Binary Search\n    Understanding binary search algorithm\n    Implementation, complexities, and applications\n\n# Week 3: Advanced Data Structures\n\n## `Day 13:` Trees\n    Introduction to tree data structure\n    Binary trees, binary search trees, and their operations\n\n## `Day 14:` AVL Trees\n    Understanding balanced binary search trees\n    Rotations, insertions, and deletions\n\n## `Day 15:` Graphs\n    Introduction to graph data structure\n    Representations, traversals, and common algorithms\n\n## `Day 16:` Graph Algorithms\n    Depth-first search (DFS) and Breadth-first search (BFS)\n    Shortest path algorithms (Dijkstra's, Bellman-Ford)\n\n## `Day 17:` Hash Tables\n    Understanding hash tables and hash functions\n    Implementations, collisions, and handling\n\n## `Day 18:` Trie\n    Introduction to trie data structure\n    Insertions, deletions, and search operations\n\n## `Day 19:` Segment Trees\n    Understanding segment tree data structure\n    Construction, queries, and updates\n# Week 4: Problem Solving and Practice\n## `Day 20-30:` Problem Solving and Practice\n    Solve a variety of problems from online platforms like LeetCode, HackerRank, or Codeforces\n    Focus on applying learned concepts to solve algorithmic problems\n\n# Recommended Resources:\n\n### Books:\n- \"Introduction to Algorithms\" by Thomas H. Cormen, Charles E. Leiserson, Ronald L.\n- Rivest, and Clifford Stein\n- \"Algorithms\" by Robert Sedgewick and Kevin Wayne\n- \"Cracking the Coding Interview\" by Gayle Laakmann McDowell\n### Online Courses:\n- Coursera: \"Algorithms\" by Princeton University\n- Udemy: \"Data Structures and Algorithms: Deep Dive Using Java\" by Tim Buchalka\n- edX: \"Algorithm Design and Analysis\" by PennX\n### Websites and Platforms:\n- LeetCode\n- HackerRank\n- Codeforces\n- GeeksforGeeks\n\n# Documentation and Tutorials:\n- GeeksforGeeks: Provides comprehensive tutorials and explanations for various data structures and algorithms.\n- Topcoder Algorithm Tutorials: Offers tutorials on advanced algorithms and problem-solving techniques.\n- Stack Overflow and various online forums: Great for finding explanations and discussions on specific problems and concepts.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjosephakaro%2F30-days_of_algorithms","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjosephakaro%2F30-days_of_algorithms","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjosephakaro%2F30-days_of_algorithms/lists"}