sed -En 'h;:a;s/^(.)+//;ta;/^$/{x;p}' file
com comentário
sed -E -n '
h # store a copy of the line
:a # set label "a"
s/^(.)+// # from the start of the line, remove sequences of 2 or more repeated chars
ta # *if the pattern matched* jump to "a"
/^$/ { # if empty string:
x # retrieve the original line
p # and print it
}
' file