{"id":37880094,"url":"https://github.com/ferueda/structy-go","last_synced_at":"2026-01-16T16:47:54.084Z","repository":{"id":49360949,"uuid":"494652187","full_name":"ferueda/structy-go","owner":"ferueda","description":"This repo contains all problem sets and solutions for the algorithms and data structures course made by @alvin-the-programmer. Solutions and test suites are written in Go.","archived":false,"fork":false,"pushed_at":"2022-08-07T19:42:12.000Z","size":110,"stargazers_count":6,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-06-21T19:05:55.330Z","etag":null,"topics":["algorithms","data-structures","go","golang"],"latest_commit_sha":null,"homepage":"https://www.structy.net/","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/ferueda.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}},"created_at":"2022-05-21T01:42:43.000Z","updated_at":"2024-06-14T09:50:37.000Z","dependencies_parsed_at":"2022-09-03T18:40:50.585Z","dependency_job_id":null,"html_url":"https://github.com/ferueda/structy-go","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ferueda/structy-go","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ferueda%2Fstructy-go","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ferueda%2Fstructy-go/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ferueda%2Fstructy-go/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ferueda%2Fstructy-go/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ferueda","download_url":"https://codeload.github.com/ferueda/structy-go/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ferueda%2Fstructy-go/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28480081,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-16T11:59:17.896Z","status":"ssl_error","status_checked_at":"2026-01-16T11:55:55.838Z","response_time":107,"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":["algorithms","data-structures","go","golang"],"created_at":"2026-01-16T16:47:53.980Z","updated_at":"2026-01-16T16:47:54.045Z","avatar_url":"https://github.com/ferueda.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# [Structy](https://www.structy.net/problem-index)\n\n[![Test Status](https://github.com/ferueda/structy-go/workflows/tests/badge.svg)](https://github.com/ferueda/structy-go/actions?query=workflow%3Atests)\n\nThis repo contains all problem sets and solutions for the algorithms and data structures course made by [Alvin Zablan](https://github.com/alvin-the-programmer). Solutions and test suites are written in Go.\n\n## [Link to the course](https://www.structy.net/)\n\n## Problem Sets\n### String\n\n* [Uncompress](https://github.com/ferueda/structy-go/tree/main/string/uncompress)\n* [Compress](https://github.com/ferueda/structy-go/tree/main/string/compress)\n* [Anagrams](https://github.com/ferueda/structy-go/tree/main/string/anagrams)\n* [Most frequent char](https://github.com/ferueda/structy-go/tree/main/string/mostFrequentChar)\n\n### Array\n\n* [Pair sum](https://github.com/ferueda/structy-go/tree/main/array/pairsum)\n* [Pair product](https://github.com/ferueda/structy-go/tree/main/array/pairproduct)\n* [Intersection](https://github.com/ferueda/structy-go/tree/main/array/intersection)\n* [Five sort](https://github.com/ferueda/structy-go/tree/main/array/fivesort)\n\n### Linked List\n\n* [Linked list values](https://github.com/ferueda/structy-go/tree/main/linkedlist/linkedListValues)\n* [Sum list](https://github.com/ferueda/structy-go/tree/main/linkedlist/sumList)\n* [Find value](https://github.com/ferueda/structy-go/tree/main/linkedlist/findValue)\n* [Get node value](https://github.com/ferueda/structy-go/tree/main/linkedlist/getNodeValue)\n* [Reverse list](https://github.com/ferueda/structy-go/tree/main/linkedlist/reverseList)\n* [Zipper lists](https://github.com/ferueda/structy-go/tree/main/linkedlist/zipperLists)\n* [Merge lists](https://github.com/ferueda/structy-go/tree/main/linkedlist/mergeLists)\n* [Is univalue](https://github.com/ferueda/structy-go/tree/main/linkedlist/isUnivalue)\n* [Longest streak](https://github.com/ferueda/structy-go/tree/main/linkedlist/longestStreak)\n* [Remove node](https://github.com/ferueda/structy-go/tree/main/linkedlist/removeNode)\n* [Insert node](https://github.com/ferueda/structy-go/tree/main/linkedlist/insertNode)\n* [Create linked list](https://github.com/ferueda/structy-go/tree/main/linkedlist/createLinkedlist)\n* [Add lists](https://github.com/ferueda/structy-go/tree/main/linkedlist/addLists)\n\n### Binary Tree\n\n* [Depth first values](https://github.com/ferueda/structy-go/tree/main/binarytree/depthFirstValues)\n* [Breadth first values](https://github.com/ferueda/structy-go/tree/main/binarytree/breadthFirstValues)\n* [Tree sum](https://github.com/ferueda/structy-go/tree/main/binarytree/treeSum)\n* [Tree includes](https://github.com/ferueda/structy-go/tree/main/binarytree/treeIncludes)\n* [Tree min value](https://github.com/ferueda/structy-go/tree/main/binarytree/treeMinValue)\n* [Max root to leaf path sum](https://github.com/ferueda/structy-go/tree/main/binarytree/maxPathSum)\n* [Tree path finder](https://github.com/ferueda/structy-go/tree/main/binarytree/treePathFinder)\n* [Tree value count](https://github.com/ferueda/structy-go/tree/main/binarytree/treeValueCount)\n* [How high](https://github.com/ferueda/structy-go/tree/main/binarytree/howHigh)\n* [Bottom right value](https://github.com/ferueda/structy-go/tree/main/binarytree/bottomRightValue)\n* [All tree paths](https://github.com/ferueda/structy-go/tree/main/binarytree/allTreePaths)\n* [Tree levels](https://github.com/ferueda/structy-go/tree/main/binarytree/treeLevels)\n* [Level averages](https://github.com/ferueda/structy-go/tree/main/binarytree/levelAverages)\n* [Leaf list](https://github.com/ferueda/structy-go/tree/main/binarytree/leafList)\n\n### Graph\n\n* [Has path](https://github.com/ferueda/structy-go/tree/main/graph/hasPath)\n* [Undirected path](https://github.com/ferueda/structy-go/tree/main/graph/undirectedPath)\n* [Connected components count](https://github.com/ferueda/structy-go/tree/main/graph/connectedComponentsCount)\n* [Largest component](https://github.com/ferueda/structy-go/tree/main/graph/largestComponent)\n* [Shortest path](https://github.com/ferueda/structy-go/tree/main/graph/shortestPath)\n* [Island count](https://github.com/ferueda/structy-go/tree/main/graph/islandCount)\n* [Minimum island](https://github.com/ferueda/structy-go/tree/main/graph/minimumIsland)\n* [Closest carrot](https://github.com/ferueda/structy-go/tree/main/graph/closestCarrot)\n* [Longest path](https://github.com/ferueda/structy-go/tree/main/graph/longestPath)\n* [Semesters required](https://github.com/ferueda/structy-go/tree/main/graph/semestersRequired)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fferueda%2Fstructy-go","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fferueda%2Fstructy-go","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fferueda%2Fstructy-go/lists"}