Guest User

Untitled

a guest
Apr 22nd, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1.  
  2.  
  3.  
  4. public static int[] getColumn(int[][] a, int c){
  5. if (a[c].length > 0){
  6. return a[c];
  7. }
  8. else {
  9. return a[c];
  10. }
  11.  
  12.  
  13.  
  14. //if(a[c].length == 0){
  15. // int[] x = {};
  16. // return x;
  17. // return a[c];
  18. }
  19.  
  20. }
Add Comment
Please, Sign In to add comment