hacker rank 35th problem(Java Generics)

35. JAVA GENERICS


 class Printer
{
    //Write your code here
    public void printArray(Object[] array) {
        for (Object obj : array) {
            System.out.println(obj);
        }
    }
}


Compiler Message
Success
Expected OutputDownload
1
2
3
Hello
World

Comments

Popular posts from this blog

Amazon Web Services

Google Code-In mentorship experience :)

Hacker Rank all java and python problem solutions