Files
2025-02-05 04:43:28 +00:00

11 lines
260 B
Plaintext

import java.util.*;
public class Test {
<spot>private static final Set<String> FRUITS =
new HashSet<>(Arrays.asList("Apple", "Pear", "Banana"))</spot>;
boolean check(String fruit) {
return <spot>FRUITS.contains(fruit)</spot>;
}
}