diff options
author | mjf <mjf@localhost.localdomain> | 2020-02-07 10:49:58 -0500 |
---|---|---|
committer | mjf <mjf@localhost.localdomain> | 2020-02-07 10:49:58 -0500 |
commit | cd26daabf4bc54c49d3613feb2757eb9c91ccb4b (patch) | |
tree | f73a20777f817e654d57178017c55eb627a60731 | |
parent | 125ec5bc3d8bfc224b7d32bcfbbc37b9fb5d441f (diff) | |
download | Project_Euler_Solutions-cd26daabf4bc54c49d3613feb2757eb9c91ccb4b.tar.gz |
removed smallexp, turns out harder than I thought
-rw-r--r-- | sumexp.c | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/sumexp.c b/sumexp.c deleted file mode 100644 index f050773..0000000 --- a/sumexp.c +++ /dev/null @@ -1,21 +0,0 @@ -#include <stdlib.h> -#include <stdio.h> -#include <string.h> - -typedef struct bigint bigint; - -struct bigint{ - char digit; - bigint *nextdigit; -}; - -// struct methods -int length(); - -// struct globals -bigint *end = NULL; -bigint *current = { .digit = '0', .nextdigit = end}; - -int length(bigint num){ - num->digits -} |