diff --git a/education/software development/ECE1400/Chapter 8 Exercises.md b/education/software development/ECE1400/Chapter 8 Exercises.md index 1c7cc2a..5c063dd 100644 --- a/education/software development/ECE1400/Chapter 8 Exercises.md +++ b/education/software development/ECE1400/Chapter 8 Exercises.md @@ -26,7 +26,8 @@ const int segments[10][7] = { {1, 1, 1, 1, 0, 0, 1}, // 3 {0, 1, 1, 0, 0, 1, 0}, // 4 {1, 0, 1, 1, 0, 1, 1}, // 5 - {1, 0, 1, 1, 1, 1, 1}, + {1, 0, 1, 1, 1, 1, 1}, // 6 + {1, 1, 1, 0, 0, 0, 0} }; ```