Advertisement
Guest User

Untitled

a guest
Apr 17th, 2014
35
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. for(i : n)
  2. for(j : n)
  3. process(a[i], a[j]);
  4.  
  5. for(i : n)
  6. for(j : n)
  7. process(a[i], a[j]);
  8.  
  9. for (i : 0 to N-2):
  10. for (j : i + 1 to N-1)
  11. Process(a[i], a[j]);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement