给你一个数组,请你求出数组a中任意两个元素间差的绝对值的最小值。
示例1
输入
[1,2,4]
输出
1
示例2
输入
[1,3,1]
输出
0
加载中...
import java.util.*; public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * 求最小差值 * @param a int整型一维数组 数组a * @return int整型 */ public int minDifference (int[] a) { // write code here } }
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * 求最小差值 * @param a int整型vector 数组a * @return int整型 */ int minDifference(vector
& a) { // write code here } };
# # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # 求最小差值 # @param a int整型一维数组 数组a # @return int整型 # class Solution: def minDifference(self , a ): # write code here
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * 求最小差值 * @param a int整型一维数组 数组a * @return int整型 */ function minDifference( a ) { // write code here } module.exports = { minDifference : minDifference };
# # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # 求最小差值 # @param a int整型一维数组 数组a # @return int整型 # class Solution: def minDifference(self , a ): # write code here
package main /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * 求最小差值 * @param a int整型一维数组 数组a * @return int整型 */ func minDifference( a []int ) int { // write code here }
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * 求最小差值 * @param a int整型一维数组 数组a * @param aLen int a数组长度 * @return int整型 */ int minDifference(int* a, int aLen ) { // write code here }
[1,2,4]
1
[1,3,1]
0