From d7e45d220be6de34c7d4fa1b42cc48b1d3230df5 Mon Sep 17 00:00:00 2001 From: Jidong Xiao Date: Thu, 29 Feb 2024 21:03:25 -0500 Subject: [PATCH] revising readme --- hws/06_inverse_word_search/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hws/06_inverse_word_search/README.md b/hws/06_inverse_word_search/README.md index b32f1f6..007d781 100644 --- a/hws/06_inverse_word_search/README.md +++ b/hws/06_inverse_word_search/README.md @@ -67,9 +67,9 @@ Once you have finished your implementation and testing, analyze the performance order notation. What important variables control the complexity of a particular problem? The width & height of the grid (w and h), the number of required words (r), the number of forbidden words (f), the number of letters in each word (l), the number of solutions (s)? In your plain text README.txt file, write -a concise paragraph (< 200 words) justifying your answer. Also include a simple table summarizing the +a concise paragraph (< 200 words) justifying your answer. ## Program Requirements & Submission Details