Guest User

Untitled

a guest
Apr 27th, 2015
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. public class BrokenSort2
  2. implements Sort
  3. {
  4. public void sort(int[] paramArrayOfInt)
  5. {
  6. for (int i = 0; i < paramArrayOfInt.length; i++) {
  7. paramArrayOfInt[i] = i;
  8. }
  9. }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment