Guest User

Untitled

a guest
May 12th, 2018
269
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. (n = TOTAL_OBJECTS - 1)
  2.  
  3. i | j
  4. ----+------
  5. 0 | 0 <-- i == j
  6. 0 | 1
  7. ... | ...
  8. 0 | n
  9. 1 | 0
  10. 1 | 1 <-- i == j
  11. 1 | 2
  12. ... | ...
  13. 1 | n
  14. ... | ...
  15. n | n - 2
  16. n | n - 1
  17. n | n <-- i == j
Advertisement
Add Comment
Please, Sign In to add comment