PHP程序,用于从数组中查找丢失的元素
我们必须在数组中找到从数组最小值到数组最大值范围内的数组中缺失的元素。 例子
1 2 3 4 5 6 7 8 | Input : arr[] = (1, 2, 3, 4, 6, 7, 8) Output : 5 The array minimum is 1 and maximum is 8. The missing element in range from 1 to 8 is 5. Input : arr[] = (10, 11, 14, 15) Output : 12, 13 |
通过观察元素之间的连续差异,可以在数组中迭代来解决这个问…