How to convert Java comma delimited into Array of object using Java 8 Stream ?
public static void main(String[] args){
String INPUT =
"00:00:01,400-234-090\n" +
"00:00:01,701-080-080\n" +
"01:05:00,600-234-090";
System.out.println(new Solution().solution(INPUT));
}