Official p.hasibuan@acm.org

Since Yesterday, 1 August 2015 i’m officially registered as ACM member and this is my email address [p.hasibuan@acm.org][5] . My purpose for joining this because to able me to access Journal in ACM. I’m also already plan to attend some acm conference such as KDD conference and Recsys conference. And also i’m planning to put 1 or 2 publication next year on ACM conference.

I hope will be contribute more in acm

 
1
Kudos
 
1
Kudos

Now read this

The Optimal Way to Use List

public List<String> getNames(List<Human> humans) { List<String> names = new ArrayList<>(); for(Human human : humans) { names.add(human.name); } return names; } I bet you are understand what code will do. It’ll get... Continue →