Using "Google Guava" in coding interviews

Posted by kbgn27 on Programmers See other posts from Programmers or by kbgn27
Published on 2012-10-08T18:28:17Z Indexed on 2012/10/08 21:50 UTC
Read the original article Hit count: 172

I attended a in-person interview recently and performed well. But surprisingly I got rejected. When I asked the HR for reason, he contacted the technical interviewer and told me that I was syntactically wrong while coding.

I used Google Guava for coding. So my code looked like this:

List<String> items = Lists.newArrayList()

instead of

List<String> items =new ArrayList<String>();

I know that the code will compile and work as expected.Is it ok to use third party libraries like Google Guava in interviews?

© Programmers or respective owner

Related posts about interview

Related posts about third-party-libraries