Here is a version based on Karl's which doesn't requires copies of the list (tmp, the slices, and the zipped list). izip is significantly faster than (Python 2) zip for large lists. chain is slightly slower than slicing but doesn't require a tmp object or copies of the list. islice plus making a tmp is a bit faster, but requires more memory and is less elegant.
from itertools import izip, chain
[y for x, y, z in izip(chain((None, None), li),
chain((None,), li),
li) if x != y != z]
A timeit test shows it to be approximately twice as fast as Karl's or my fastest groupby version for short groups.
Make sure to use a value other than None (like object()) if your list can contain Nones.
Use this version if you need it to work on an iterator / iterable that isn't a sequence, or your groups are long:
[key for key, group in groupby(li)
if (next(group) or True) and next(group, None) is None]
timeit shows it's about ten times faster than the other version for 1,000 item groups.
Earlier, slow versions:
[key for key, group in groupby(li) if sum(1 for i in group) == 1]
[key for key, group in groupby(li) if len(tuple(group)) == 1]
re = [0, 1, 2, 3, 4, 3, 2, 1, 0]? – jdi Oct 3 '11 at 23:59