Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/AxlLind/AdventOfCode
/ Node
Class
Node
2020/src/bin/23.c:9–9 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
7
int INPUT[] = {4,6,3,5,2,8,1,7,9};
8
9
typedef struct Node { struct Node *next; } Node;
10
11
Node* build_list(int size) {
12
Node *list = malloc(sizeof(Node) * size);
Callers
nothing calls this directly
Calls
no outgoing calls
Tested by
no test coverage detected