From 47e79e370dd884ce960ad4518b7cbb28e9f651d4 Mon Sep 17 00:00:00 2001 From: zleyyij <75810274+zleyyij@users.noreply.github.com> Date: Tue, 8 Oct 2024 21:46:22 -0600 Subject: [PATCH] vault backup: 2024-10-08 21:46:22 --- education/software development/ECE1400/Chapter 8 Exercises.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/education/software development/ECE1400/Chapter 8 Exercises.md b/education/software development/ECE1400/Chapter 8 Exercises.md index 5c063dd..97689bc 100644 --- a/education/software development/ECE1400/Chapter 8 Exercises.md +++ b/education/software development/ECE1400/Chapter 8 Exercises.md @@ -27,7 +27,9 @@ const int segments[10][7] = { {0, 1, 1, 0, 0, 1, 0}, // 4 {1, 0, 1, 1, 0, 1, 1}, // 5 {1, 0, 1, 1, 1, 1, 1}, // 6 - {1, 1, 1, 0, 0, 0, 0} + {1, 1, 1, 0, 0, 0, 0}, // 7 + {1, 1, 1, 1, 1, 1, 1}, // 8 + {1, 1, 1, 1, 0, 1, 1} // 9 }; ```