mirror of
https://github.com/System-End/APCSA.git
synced 2026-04-19 21:05:16 +00:00
13 lines
292 B
Java
13 lines
292 B
Java
public class U6_L2_Activity_One {
|
|
|
|
// Write your containsNeg method here
|
|
|
|
public static boolean containsNeg(double[] arr) {
|
|
for (int i = 0; i < arr.length; i++) {
|
|
if (arr[i] < 0) {
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
}
|