From eba29b1de4403fa012806637b8d3fdbb13c99c68 Mon Sep 17 00:00:00 2001 From: Jidong Xiao Date: Thu, 29 Feb 2024 22:34:49 -0500 Subject: [PATCH] rearrange the notes --- hws/06_inverse_word_search/README.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/hws/06_inverse_word_search/README.md b/hws/06_inverse_word_search/README.md index ce3ec1b..49be37a 100644 --- a/hws/06_inverse_word_search/README.md +++ b/hws/06_inverse_word_search/README.md @@ -1,6 +1,5 @@ -**Special Note 1: For this assignment, we will not deduct points if you use data structures which have not been learned in this class.** - -**Special Note 2: A correct program does not necessarily pass all the test cases for this assignment, as Submitty may let you fail a test case if your program is not fast enough or consumes too much memory.** +**Special Note 1: A correct program does not necessarily pass all the test cases for this assignment, as Submitty may let you fail a test case if your program is not fast enough or consumes too much memory.** +**Special Note 2: For this assignment, we will not deduct points if you use data structures which have not been learned in this class. However, students who passed all test cases last semester did not use any of such data structures. In other words, using only data structures we have learned so far, is sufficient to pass all test cases.** # Homework 6 — Inverse Word Search Recursion