79572710

Date: 2025-04-14 08:44:53
Score: 0.5
Natty:
Report link

Perhaps you can achieve this using ListIterator?

for (ListIterator<A> it = myList.listIterator(24); it.hasPrevious(); ) {
   A item = it.previous();
   ...
}
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • High reputation (-2):
Posted by: lance-java