diff options
author | Fudgerboy <91767657+Fudgerboy@users.noreply.github.com> | 2023-12-04 03:22:24 +0000 |
---|---|---|
committer | Fudgerboy <91767657+Fudgerboy@users.noreply.github.com> | 2023-12-04 03:22:24 +0000 |
commit | 197319e1d5d67c82c4caa794964ff1a3d3494eac (patch) | |
tree | cda29405db17c1389c13a77fc213b4e1f9759826 /wk1/pset1/mario-more | |
parent | 3b914f08593dcece1c51aff46312357e546ccb51 (diff) |
Sun, Dec 3, 2023, 7:22 PM -08:00
Diffstat (limited to 'wk1/pset1/mario-more')
-rw-r--r-- | wk1/pset1/mario-more/mario.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wk1/pset1/mario-more/mario.c b/wk1/pset1/mario-more/mario.c index ed1de18..e92a7ce 100644 --- a/wk1/pset1/mario-more/mario.c +++ b/wk1/pset1/mario-more/mario.c @@ -43,7 +43,7 @@ void print_grid(size) printf(" "); for (int j = size; j > 0; j--) { - if ((size - (j + i + i)) > 1) + if ((size - (j + i)) > 1) { printf("#"); } |