用友技术笔试-友新星实习项目-Java-01卷(2024.5.26 15:00-17:00) 第1题 public class Solution { public long minOperations(int[] nums1, int[] nums2, int k) { int n = nums1.length; int[] diff = new int[n]; long totalIncrease = 0, totalDecrease = 0; for (int i = 0; i < n; i++) { ...