通过引用下面的此问题链接
How to solve 'Client is immutable when created with the builder'?
我确实有类似的代码结构,其中出现错误提示
无法计算MD5哈希
public int lengthOfLISAtLeastK(int[] nums, int K) {
if ( nums == null ) return 0;
if ( nums.length <= 1 ) return nums.length;
List<Integer> list = new ArrayList<Integer>(nums.length);
list.add( 0, nums[0] );
for ( int i = 1; i < nums.length; i++ ) {
if ( nums[i] - list.get( list.size() - 1 ) >= K ) {
list.add( nums[i] );
} else {
int index = Collections.binarySearch( list, nums[i] );
if ( index >= 0 && index < nums.length ) {
list.set( index, nums[i] );
} else {
if ( -index - 1 > list.size() - 1 ) {
if ( nums[i] - list.get(list.size()-1) >= K ) {
list.add(nums[i]);
}
} else {
if ( -index - 1 == 0 ) {
list.set(-index-1, nums[i]);
} else if ( nums[i] - list.get(-index-2) >= K ) {
list.set(-index-1, nums[i]);
}
}
}
}
}
return list.size();
}
尽管我有一个带有正确路径的文件。我正在使用aws lambda函数以便在s3中上传文件。
有帮助吗?