diff options
author | Oskar <[email protected]> | 2024-11-01 10:44:53 +0100 |
---|---|---|
committer | Oskar <[email protected]> | 2024-11-01 10:44:53 +0100 |
commit | 77b344e13eae4b4439f96a8d062151da03bf8263 (patch) | |
tree | c7ed835678354e1877383884f7c061b5930b7328 /9p37.cpp | |
parent | ce6f87441ab2343f7730139f20d25b41e9dd6080 (diff) |
been a while, took a break i guess
Diffstat (limited to '9p37.cpp')
-rw-r--r-- | 9p37.cpp | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/9p37.cpp b/9p37.cpp new file mode 100644 index 0000000..50a67a1 --- /dev/null +++ b/9p37.cpp @@ -0,0 +1,17 @@ + +/* + * + * 9.37 + * + * + */ + +int main () { + + // Array is fixed size + // Not sure why list does not have capacity. + // From my understanding of manually creating linked lists + // We create each node and connect the previous one to the new one. + // Maybe there is not really a need to allocate for nodes that dont exist? + return 0; +} |