Advertisement
Guest User

Untitled

a guest
Oct 26th, 2016
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. while x < end:
  2. count = 0
  3. for i in range(len(times)-1):
  4. if times[i] >= x - packetDuration and times[i] < x:
  5. count += 1
  6. x = x + packetDuration
  7. if count == 1:
  8. slottedsafe += 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement