100
edits
Changes
→Bugs/Problems
<u>''' Week 4 - Sept 23 - 29 '''</u>
-Allocated memory for local copy of str in the edit() function. Memory allocated (by calling new) was based on length of original string. After inserts into the local copy, memory was therefore corrupted and delete [] was failing. The memory allocation was changed to be based on maxStrLength which is passed in to edit(). This fixed the problem.
== <u>'''Accomplishments'''</u> ==