go around the arrayList and store the current int in a dummy variable. As you iterate compare against each one and replace. Repeat until the entire way around.
dummy = inf
currentInt = arrayList[0]
for(int = 0; int < size; int++){
if(dummy == currentInt){return there is a repeat}
dummy=currentInt
currentInt=nextInt
}
return no repeat