function insertSort(int[] memory arr) external returns(int[] memory){
for(int i=1;i[i]=0;j--){
if(arr[j]>=temp) arr[j+1]=arr[j];
else {
arr[j+1]=temp;
}
}
}
return arr;
}
}
在每一行赋值的地方都会报类型错误。我个人的理解是我在参数和变量声明时都声明了类型,为什么还会有类型错误?
TypeError: Type int256 is not implicitly convertible to expected type uint256.