Hi sandy8000,
use can use e.g. these Greps in a FindChangeByList script.
For the same words at the beginning of paragraph:
^(\w{2,}\b )\1+
--> with an space after \b
For the same letters at the end:
( \w)\1+(?=[[:punct:]]?$)
--> with an space before \w
Have fun