From 0b84b996d36abc6ae2827762780a382018392d8e Mon Sep 17 00:00:00 2001 From: Jidong Xiao Date: Wed, 8 Nov 2023 10:03:38 -0500 Subject: [PATCH] fixing the typo in the comments --- labs/11_hash_tables/happy_number.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/labs/11_hash_tables/happy_number.cpp b/labs/11_hash_tables/happy_number.cpp index 260c5dc..83f2269 100644 --- a/labs/11_hash_tables/happy_number.cpp +++ b/labs/11_hash_tables/happy_number.cpp @@ -6,7 +6,7 @@ bool isHappy(int n) { int main() { // Test cases // 2, 4, 5, 6, 17, 18, 20 are not happy numbers. - // 1, 7, 10, 13, 19, 23, 28, 68 are not happy numbers. + // 1, 7, 10, 13, 19, 23, 28, 68 are happy numbers. int testCases[] = {2,4,5,6,17,18,20,1,7,10,13,19,23,28,68};