From 0ff35808d6cfa2001a91fdcb11210fa3b2fc389c Mon Sep 17 00:00:00 2001 From: Jidong Xiao Date: Tue, 7 Nov 2023 10:42:44 -0500 Subject: [PATCH] square root symbol --- labs/11_hash_tables/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/labs/11_hash_tables/README.md b/labs/11_hash_tables/README.md index 22f22d9..5a35b2f 100644 --- a/labs/11_hash_tables/README.md +++ b/labs/11_hash_tables/README.md @@ -27,10 +27,10 @@ Input: n = 19 Output: true Explanation: -12 + 92 = 82 -82 + 22 = 68 -62 + 82 = 100 -12 + 02 + 02 = 1 +1^2 + 9^2 = 82 +8^2 + 2^2 = 68 +6^2 + 8^2 = 100 +1^2 + 0^2 + 0^2 = 1 ``` ```console