fork download
  1. /* package whatever; // don't place package name! */
  2. //RG code -2 | VPS | 11-22
  3.  
  4. import java.util.*;
  5. import java.lang.*;
  6. import java.io.*;
  7.  
  8. class Ideone
  9. {
  10. public static void main (String[] args) throws java.lang.Exception
  11. {
  12. char[] arr = {'N','N','N','B','N','B','N','N'};
  13. System.out.println(findMaxLength(arr));
  14. }
  15.  
  16. public static int findMaxLength(char[] arr) {
  17. // write your code here
  18. return 0;
  19.  
  20. }
  21. }
Success #stdin #stdout 0.09s 47128KB
stdin
Standard input is empty
stdout
0