I'm not sure how to do check a memory address and see if a word exists inside of the array.
If I have the following code, where $t0 contains the base address of the array
.data
array: .space 800 #For 200 integers
la $t0, table
sw $t1, 0($t0) #Add the value at t1 to the table
Now how would I check if the word i added is already in the table?