题解 | #整型数组合并#

整型数组合并

https://www.nowcoder.com/practice/c4f11ea2c886429faf91decfaf6a310b

import java.util.ArrayList;
import java.util.List;
import java.util.Scanner;
import java.util.stream.Stream;

/**
 * @author hll[yellowdradra@foxmail.com]
 * @since 2023-03-24 15:40
 **/
public class Main {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        in.nextLine();
        String s1 = in.nextLine();
        in.nextLine();
        String s3 = in.nextLine();
        String s = Stream.of(s1, s3)
                .flatMap(x -> Stream.of(x.split(" ")))
                .mapToInt(Integer::parseInt)
                .distinct()
                .sorted()
                .mapToObj(String::valueOf)
                .reduce((x, y) -> x + y)
                .orElse("");
        System.out.println(s);
    }
}

全部评论

相关推荐

点赞 评论 收藏
分享
10-14 21:00
门头沟学院 Java
吃花椒的狸猫:这个人说的倒是实话,特别是小公司,一个实习生哪里来的那么多要求
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务