在下面的代码中,public int solution(int[] A) {
int result = 1;
boolean found = false;
A = Arrays.stream(A).filter(x -> x > 0).sorted().distinct().toArray();
//System.out.println(Arrays.toString(A));
for (int i = 0; i < A.length; i++) {
result = i + 1;
if (result != A[i]) {
found = true;
break;
}
}
if (!found && result == A.length) {
//result is larger than max element in array
result++;
}
return result;
}
语句中的mysqli_connect()
工作正常。但是当我运行mysqli_query($ conn,$ sql)时。它显示 mysqli_query()期望参数1为mysqli,null在文件名和行号中给出... 我尝试使用全局也没有成功。
而且,当我取消注释时
require_once
它再次运作良好。
请让我知道我犯的错误是什么,无法捕捉。
$conn = mysqli_connect('localhost', 'root', '','ts_talspo');