So I have a list that is monotonically increasing, but has many repetitive values. For example, these are the first few elements:
[0.0, 0.0, 0.0, 0.6931471805599453, 0.6931471805599453, 0.6931471805599453, 0.6931471805599453, 1.0986122886681098, 1.0986122886681098, ...
What is an efficient way to get a list of indices where jumps happen? E.g. here, 2 would be the first index.