79450482

Date: 2025-02-19 07:19:44
Score: 1
Natty:
Report link
size = len(array)
for index in range(0, 2 * size):
  # here when it reaches size, the index becomes 0 again and continues
  value = array[index % size]
  print(value)
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: dagi