[code-stream] #java
//merge collection List<String> resultPersonnos = Stream.of(list1, list2) .flatMap(Collection::stream) .distinct() .sorted() .collect(Collectors.toList());