From d0aff5442cffa9a8674a857fae35c7a9145f0ec6 Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Mon, 7 Dec 2020 02:05:56 -0500 Subject: Check cons[i].cnt to break out of loop That was bothering me. --- 2020/day07.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/2020/day07.c b/2020/day07.c index 7445259..4cbb9f8 100644 --- a/2020/day07.c +++ b/2020/day07.c @@ -27,7 +27,7 @@ static struct Bag *findBag(const char *adj, const char *col) { } static bool canContain(struct Bag *bag, const char *adj, const char *col) { for (int i = 0; i < 4; ++i) { - if (!bag->cons[i].adj[0]) break; + if (!bag->cons[i].cnt) break; if (!strcmp(bag->cons[i].adj, adj) && !strcmp(bag->cons[i].col, col)) { return true; } @@ -40,7 +40,7 @@ static bool canContain(struct Bag *bag, const char *adj, const char *col) { static int containsCount(struct Bag *bag) { int count = 0; for (int i = 0; i < 4; ++i) { - if (!bag->cons[i].adj[0]) break; + if (!bag->cons[i].cnt) break; count += bag->cons[i].cnt; count += bag->cons[i].cnt * containsCount(findBag(bag->cons[i].adj, bag->cons[i].col)); -- cgit 1.4.1 w=1'>log tree commit diff
path: root/bin/cash/libedit/Makefile (unfollow)
Commit message (Expand)Author
2019-02-18Match whitespace between * [] {}June McEnroe
2019-02-18Fix function-like #define regexJune McEnroe
2019-02-18Match Tag in RustJune McEnroe
2019-02-18Match sh functions as TagJune McEnroe
2019-02-18Match Sh and Ss as Tag in mdocJune McEnroe
2019-02-18Match statics and typedefs as TagJune McEnroe
2019-02-18Clean up htmlHeaderJune McEnroe
2019-02-18Remove hi line numberingJune McEnroe
2019-02-18Add Tag class to hiJune McEnroe
2019-02-17Generate HTML with hi -n -f html -o anchorJune McEnroe
2019-02-17Add hi -f html -o anchor for line number linksJune McEnroe
2019-02-17Simplify temp trap in upJune McEnroe
2019-02-17Add line numbers to hiJune McEnroe
2019-02-17Always split spans after newlinesJune McEnroe
2019-02-15Color format specifiers light cyan in vimJune McEnroe
2019-02-15Highlight Interp as yellowJune McEnroe
2019-02-15Highlight strings in sh command substitutionsJune McEnroe
2019-02-15Add nmap gpJune McEnroe
2019-02-14Avoid newline when copying URL to pasteboardJune McEnroe
2019-02-13Add forgotten "sixth" book of H2G2June McEnroe