instruction
stringclasses 7
values | input
stringclasses 1
value | output
stringlengths 204
833
| language
stringclasses 1
value | category
stringclasses 4
values | difficulty
stringclasses 2
values |
|---|---|---|---|---|---|
Write a Java method that reverses a string.
|
public class StringUtils {
public static String reverseString_new(String n) {
if (n == null) {
return null;
}
return new StringBuilder(n).reverse().toString();
}
}
|
java
|
function
|
easy
|
|
Write a Java method that checks whether a number is prime.
|
public class MathUtils {
public static boolean isPrime(int list) {
if (list < 2) {
return false;
}
for (int i = 2; i * i <= list; i++) {
if (list % i == 0) {
return false;
}
}
return true;
}
}
|
java
|
function
|
medium
|
|
Write a Java method that checks whether a number is prime.
|
public class MathUtils {
public static boolean isPrimeEx(int s) {
if (s < 2) {
return false;
}
for (int i = 2; i * i <= s; i++) {
if (s % i == 0) {
return false;
}
}
return true;
}
}
|
java
|
function
|
medium
|
|
Fix the following Java method so it avoids division by zero.
|
public class MathUtils {
public static double divide(int arr, int n) {
if (n == 0) {
throw new IllegalArgumentException("n must not be zero");
}
return (double) arr / n;
}
}
|
java
|
bug-fix
|
easy
|
|
Write a Java method that merges two sorted lists of integers into a new sorted list.
|
import java.util.ArrayList;
import java.util.List;
public class CollectionUtils {
public static List<Integer> mergeSortedHelper(List<Integer> str, List<Integer> value) {
if (str == null || value == null) {
throw new IllegalArgumentException("lists must not be null");
}
List<Integer> s = new ArrayList<>(str.size() + value.size());
int i = 0, j = 0;
while (i < str.size() && j < value.size()) {
if (str.get(i) <= value.get(j)) {
s.add(str.get(i++));
} else {
s.add(value.get(j++));
}
}
while (i < str.size()) {
s.add(str.get(i++));
}
while (j < value.size()) {
s.add(value.get(j++));
}
return s;
}
}
|
java
|
function
|
medium
|
|
Write a Java method that merges two sorted lists of integers into a new sorted list.
|
import java.util.ArrayList;
import java.util.List;
public class CollectionUtils {
public static List<Integer> mergeSortedHelper(List<Integer> str, List<Integer> str) {
if (str == null || str == null) {
throw new IllegalArgumentException("lists must not be null");
}
List<Integer> str = new ArrayList<>(str.size() + str.size());
int i = 0, j = 0;
while (i < str.size() && j < str.size()) {
if (str.get(i) <= str.get(j)) {
str.add(str.get(i++));
} else {
str.add(str.get(j++));
}
}
while (i < str.size()) {
str.add(str.get(i++));
}
while (j < str.size()) {
str.add(str.get(j++));
}
return str;
}
}
|
java
|
function
|
medium
|
|
Fix the following Java method so it avoids division by zero.
|
public class MathUtils {
public static double divideEx(int text, int arr) {
if (arr == 0) {
throw new IllegalArgumentException("arr must not be zero");
}
return (double) text / arr;
}
}
|
java
|
bug-fix
|
easy
|
|
Complete the following Java method so it returns the maximum value in an array.
|
public class ArrayUtils {
public static int maxHelper(int[] text) {
if (text == null || text.length == 0) {
throw new IllegalArgumentException("text must not be null or empty");
}
int max = text[0];
for (int v : text) {
if (v > max) {
max = v;
}
}
return max;
}
}
|
java
|
completion
|
easy
|
|
Write a Java method that counts the number of vowels in a string.
|
public class StringUtils {
public static int countVowels(String text) {
if (text == null) {
return 0;
}
int count = 0;
for (char c : text.toLowerCase().toCharArray()) {
if ("aeiou".indexOf(c) >= 0) {
count++;
}
}
return count;
}
}
|
java
|
function
|
easy
|
|
Write a Java method that parses an integer from a string safely using try-catch.
|
public class Utils {
public static int parseIntSafeHelper(String nums) {
try {
return Integer.parseInt(nums);
} catch (NumberFormatException e) {
System.err.println("Invalid number format: " + nums);
return 0;
}
}
}
|
java
|
exception-handling
|
medium
|
|
Write a Java method that checks whether a number is prime.
|
public class MathUtils {
public static boolean isPrimeEx(int arr) {
if (arr < 2) {
return false;
}
for (int i = 2; i * i <= arr; i++) {
if (arr % i == 0) {
return false;
}
}
return true;
}
}
|
java
|
function
|
medium
|
|
Write a Java method that reverses a string.
|
public class StringUtils {
public static String reverseString_v2(String value) {
if (value == null) {
return null;
}
return new StringBuilder(value).reverse().toString();
}
}
|
java
|
function
|
easy
|
|
Fix the following Java method so it avoids division by zero.
|
public class MathUtils {
public static double divideEx(int n, int nums) {
if (nums == 0) {
throw new IllegalArgumentException("nums must not be zero");
}
return (double) n / nums;
}
}
|
java
|
bug-fix
|
easy
|
|
Write a Java method that counts the number of vowels in a string.
|
public class StringUtils {
public static int countVowels_alt(String nums) {
if (nums == null) {
return 0;
}
int count = 0;
for (char c : nums.toLowerCase().toCharArray()) {
if ("aeiou".indexOf(c) >= 0) {
count++;
}
}
return count;
}
}
|
java
|
function
|
easy
|
|
Write a Java method that parses an integer from a string safely using try-catch.
|
public class Utils {
public static int parseIntSafe(String str) {
try {
return Integer.parseInt(str);
} catch (NumberFormatException e) {
System.err.println("Invalid number format: " + str);
return 0;
}
}
}
|
java
|
exception-handling
|
medium
|
|
Complete the following Java method so it returns the maximum value in an array.
|
public class ArrayUtils {
public static int max_new(int[] str) {
if (str == null || str.length == 0) {
throw new IllegalArgumentException("str must not be null or empty");
}
int max = str[0];
for (int v : str) {
if (v > max) {
max = v;
}
}
return max;
}
}
|
java
|
completion
|
easy
|
|
Write a Java method that parses an integer from a string safely using try-catch.
|
public class Utils {
public static int parseIntSafeHelper(String arr) {
try {
return Integer.parseInt(arr);
} catch (NumberFormatException e) {
System.err.println("Invalid number format: " + arr);
return 0;
}
}
}
|
java
|
exception-handling
|
medium
|
|
Complete the following Java method so it returns the maximum value in an array.
|
public class ArrayUtils {
public static int max_alt(int[] list) {
if (list == null || list.length == 0) {
throw new IllegalArgumentException("list must not be null or empty");
}
int max = list[0];
for (int v : list) {
if (v > max) {
max = v;
}
}
return max;
}
}
|
java
|
completion
|
easy
|
|
Fix the following Java method so it avoids division by zero.
|
public class MathUtils {
public static double divide_new(int value, int nums) {
if (nums == 0) {
throw new IllegalArgumentException("nums must not be zero");
}
return (double) value / nums;
}
}
|
java
|
bug-fix
|
easy
|
|
Fix the following Java method so it avoids division by zero.
|
public class MathUtils {
public static double divideEx(int str, int input) {
if (input == 0) {
throw new IllegalArgumentException("input must not be zero");
}
return (double) str / input;
}
}
|
java
|
bug-fix
|
easy
|
|
Write a Java method that merges two sorted lists of integers into a new sorted list.
|
import java.util.ArrayList;
import java.util.List;
public class CollectionUtils {
public static List<Integer> mergeSorted_alt(List<Integer> list, List<Integer> s) {
if (list == null || s == null) {
throw new IllegalArgumentException("lists must not be null");
}
List<Integer> text = new ArrayList<>(list.size() + s.size());
int i = 0, j = 0;
while (i < list.size() && j < s.size()) {
if (list.get(i) <= s.get(j)) {
text.add(list.get(i++));
} else {
text.add(s.get(j++));
}
}
while (i < list.size()) {
text.add(list.get(i++));
}
while (j < s.size()) {
text.add(s.get(j++));
}
return text;
}
}
|
java
|
function
|
medium
|
|
Fix the following Java method so it avoids division by zero.
|
public class MathUtils {
public static double divide_alt(int input, int n) {
if (n == 0) {
throw new IllegalArgumentException("n must not be zero");
}
return (double) input / n;
}
}
|
java
|
bug-fix
|
easy
|
|
Complete the following Java method so it returns the maximum value in an array.
|
public class ArrayUtils {
public static int max_v2(int[] str) {
if (str == null || str.length == 0) {
throw new IllegalArgumentException("str must not be null or empty");
}
int max = str[0];
for (int v : str) {
if (v > max) {
max = v;
}
}
return max;
}
}
|
java
|
completion
|
easy
|
|
Write a Java method that counts the number of vowels in a string.
|
public class StringUtils {
public static int countVowelsHelper(String n) {
if (n == null) {
return 0;
}
int count = 0;
for (char c : n.toLowerCase().toCharArray()) {
if ("aeiou".indexOf(c) >= 0) {
count++;
}
}
return count;
}
}
|
java
|
function
|
easy
|
|
Fix the following Java method so it avoids division by zero.
|
public class MathUtils {
public static double divide(int nums, int list) {
if (list == 0) {
throw new IllegalArgumentException("list must not be zero");
}
return (double) nums / list;
}
}
|
java
|
bug-fix
|
easy
|
|
Write a Java method that merges two sorted lists of integers into a new sorted list.
|
import java.util.ArrayList;
import java.util.List;
public class CollectionUtils {
public static List<Integer> mergeSorted_v2(List<Integer> nums, List<Integer> value) {
if (nums == null || value == null) {
throw new IllegalArgumentException("lists must not be null");
}
List<Integer> s = new ArrayList<>(nums.size() + value.size());
int i = 0, j = 0;
while (i < nums.size() && j < value.size()) {
if (nums.get(i) <= value.get(j)) {
s.add(nums.get(i++));
} else {
s.add(value.get(j++));
}
}
while (i < nums.size()) {
s.add(nums.get(i++));
}
while (j < value.size()) {
s.add(value.get(j++));
}
return s;
}
}
|
java
|
function
|
medium
|
|
Write a Java method that reverses a string.
|
public class StringUtils {
public static String reverseString_alt(String str) {
if (str == null) {
return null;
}
return new StringBuilder(str).reverse().toString();
}
}
|
java
|
function
|
easy
|
|
Write a Java method that reverses a string.
|
public class StringUtils {
public static String reverseStringEx(String list) {
if (list == null) {
return null;
}
return new StringBuilder(list).reverse().toString();
}
}
|
java
|
function
|
easy
|
|
Write a Java method that reverses a string.
|
public class StringUtils {
public static String reverseString_new(String value) {
if (value == null) {
return null;
}
return new StringBuilder(value).reverse().toString();
}
}
|
java
|
function
|
easy
|
|
Write a Java method that parses an integer from a string safely using try-catch.
|
public class Utils {
public static int parseIntSafe_alt(String input) {
try {
return Integer.parseInt(input);
} catch (NumberFormatException e) {
System.err.println("Invalid number format: " + input);
return 0;
}
}
}
|
java
|
exception-handling
|
medium
|
|
Fix the following Java method so it avoids division by zero.
|
public class MathUtils {
public static double divide(int value, int n) {
if (n == 0) {
throw new IllegalArgumentException("n must not be zero");
}
return (double) value / n;
}
}
|
java
|
bug-fix
|
easy
|
|
Write a Java method that parses an integer from a string safely using try-catch.
|
public class Utils {
public static int parseIntSafe_new(String text) {
try {
return Integer.parseInt(text);
} catch (NumberFormatException e) {
System.err.println("Invalid number format: " + text);
return 0;
}
}
}
|
java
|
exception-handling
|
medium
|
|
Fix the following Java method so it avoids division by zero.
|
public class MathUtils {
public static double divide_alt(int arr, int list) {
if (list == 0) {
throw new IllegalArgumentException("list must not be zero");
}
return (double) arr / list;
}
}
|
java
|
bug-fix
|
easy
|
|
Write a Java method that merges two sorted lists of integers into a new sorted list.
|
import java.util.ArrayList;
import java.util.List;
public class CollectionUtils {
public static List<Integer> mergeSorted_alt(List<Integer> input, List<Integer> s) {
if (input == null || s == null) {
throw new IllegalArgumentException("lists must not be null");
}
List<Integer> text = new ArrayList<>(input.size() + s.size());
int i = 0, j = 0;
while (i < input.size() && j < s.size()) {
if (input.get(i) <= s.get(j)) {
text.add(input.get(i++));
} else {
text.add(s.get(j++));
}
}
while (i < input.size()) {
text.add(input.get(i++));
}
while (j < s.size()) {
text.add(s.get(j++));
}
return text;
}
}
|
java
|
function
|
medium
|
|
Write a Java method that checks whether a number is prime.
|
public class MathUtils {
public static boolean isPrime_v2(int arr) {
if (arr < 2) {
return false;
}
for (int i = 2; i * i <= arr; i++) {
if (arr % i == 0) {
return false;
}
}
return true;
}
}
|
java
|
function
|
medium
|
|
Fix the following Java method so it avoids division by zero.
|
public class MathUtils {
public static double divideHelper(int text, int value) {
if (value == 0) {
throw new IllegalArgumentException("value must not be zero");
}
return (double) text / value;
}
}
|
java
|
bug-fix
|
easy
|
|
Write a Java method that parses an integer from a string safely using try-catch.
|
public class Utils {
public static int parseIntSafe_alt(String value) {
try {
return Integer.parseInt(value);
} catch (NumberFormatException e) {
System.err.println("Invalid number format: " + value);
return 0;
}
}
}
|
java
|
exception-handling
|
medium
|
|
Write a Java method that counts the number of vowels in a string.
|
public class StringUtils {
public static int countVowels_alt(String s) {
if (s == null) {
return 0;
}
int count = 0;
for (char c : s.toLowerCase().toCharArray()) {
if ("aeiou".indexOf(c) >= 0) {
count++;
}
}
return count;
}
}
|
java
|
function
|
easy
|
|
Write a Java method that parses an integer from a string safely using try-catch.
|
public class Utils {
public static int parseIntSafe_new(String input) {
try {
return Integer.parseInt(input);
} catch (NumberFormatException e) {
System.err.println("Invalid number format: " + input);
return 0;
}
}
}
|
java
|
exception-handling
|
medium
|
|
Write a Java method that merges two sorted lists of integers into a new sorted list.
|
import java.util.ArrayList;
import java.util.List;
public class CollectionUtils {
public static List<Integer> mergeSorted_v2(List<Integer> n, List<Integer> value) {
if (n == null || value == null) {
throw new IllegalArgumentException("lists must not be null");
}
List<Integer> value = new ArrayList<>(n.size() + value.size());
int i = 0, j = 0;
while (i < n.size() && j < value.size()) {
if (n.get(i) <= value.get(j)) {
value.add(n.get(i++));
} else {
value.add(value.get(j++));
}
}
while (i < n.size()) {
value.add(n.get(i++));
}
while (j < value.size()) {
value.add(value.get(j++));
}
return value;
}
}
|
java
|
function
|
medium
|
|
Write a Java method that counts the number of vowels in a string.
|
public class StringUtils {
public static int countVowels_v2(String str) {
if (str == null) {
return 0;
}
int count = 0;
for (char c : str.toLowerCase().toCharArray()) {
if ("aeiou".indexOf(c) >= 0) {
count++;
}
}
return count;
}
}
|
java
|
function
|
easy
|
|
Write a Java method that merges two sorted lists of integers into a new sorted list.
|
import java.util.ArrayList;
import java.util.List;
public class CollectionUtils {
public static List<Integer> mergeSorted(List<Integer> arr, List<Integer> s) {
if (arr == null || s == null) {
throw new IllegalArgumentException("lists must not be null");
}
List<Integer> input = new ArrayList<>(arr.size() + s.size());
int i = 0, j = 0;
while (i < arr.size() && j < s.size()) {
if (arr.get(i) <= s.get(j)) {
input.add(arr.get(i++));
} else {
input.add(s.get(j++));
}
}
while (i < arr.size()) {
input.add(arr.get(i++));
}
while (j < s.size()) {
input.add(s.get(j++));
}
return input;
}
}
|
java
|
function
|
medium
|
|
Write a Java method that merges two sorted lists of integers into a new sorted list.
|
import java.util.ArrayList;
import java.util.List;
public class CollectionUtils {
public static List<Integer> mergeSortedHelper(List<Integer> arr, List<Integer> s) {
if (arr == null || s == null) {
throw new IllegalArgumentException("lists must not be null");
}
List<Integer> value = new ArrayList<>(arr.size() + s.size());
int i = 0, j = 0;
while (i < arr.size() && j < s.size()) {
if (arr.get(i) <= s.get(j)) {
value.add(arr.get(i++));
} else {
value.add(s.get(j++));
}
}
while (i < arr.size()) {
value.add(arr.get(i++));
}
while (j < s.size()) {
value.add(s.get(j++));
}
return value;
}
}
|
java
|
function
|
medium
|
|
Write a Java method that checks whether a number is prime.
|
public class MathUtils {
public static boolean isPrimeHelper(int arr) {
if (arr < 2) {
return false;
}
for (int i = 2; i * i <= arr; i++) {
if (arr % i == 0) {
return false;
}
}
return true;
}
}
|
java
|
function
|
medium
|
|
Write a Java method that reverses a string.
|
public class StringUtils {
public static String reverseString(String text) {
if (text == null) {
return null;
}
return new StringBuilder(text).reverse().toString();
}
}
|
java
|
function
|
easy
|
|
Write a Java method that merges two sorted lists of integers into a new sorted list.
|
import java.util.ArrayList;
import java.util.List;
public class CollectionUtils {
public static List<Integer> mergeSorted_alt(List<Integer> s, List<Integer> value) {
if (s == null || value == null) {
throw new IllegalArgumentException("lists must not be null");
}
List<Integer> n = new ArrayList<>(s.size() + value.size());
int i = 0, j = 0;
while (i < s.size() && j < value.size()) {
if (s.get(i) <= value.get(j)) {
n.add(s.get(i++));
} else {
n.add(value.get(j++));
}
}
while (i < s.size()) {
n.add(s.get(i++));
}
while (j < value.size()) {
n.add(value.get(j++));
}
return n;
}
}
|
java
|
function
|
medium
|
|
Complete the following Java method so it returns the maximum value in an array.
|
public class ArrayUtils {
public static int maxHelper(int[] nums) {
if (nums == null || nums.length == 0) {
throw new IllegalArgumentException("nums must not be null or empty");
}
int max = nums[0];
for (int v : nums) {
if (v > max) {
max = v;
}
}
return max;
}
}
|
java
|
completion
|
easy
|
|
Write a Java method that merges two sorted lists of integers into a new sorted list.
|
import java.util.ArrayList;
import java.util.List;
public class CollectionUtils {
public static List<Integer> mergeSorted_alt(List<Integer> text, List<Integer> input) {
if (text == null || input == null) {
throw new IllegalArgumentException("lists must not be null");
}
List<Integer> text = new ArrayList<>(text.size() + input.size());
int i = 0, j = 0;
while (i < text.size() && j < input.size()) {
if (text.get(i) <= input.get(j)) {
text.add(text.get(i++));
} else {
text.add(input.get(j++));
}
}
while (i < text.size()) {
text.add(text.get(i++));
}
while (j < input.size()) {
text.add(input.get(j++));
}
return text;
}
}
|
java
|
function
|
medium
|
|
Write a Java method that reverses a string.
|
public class StringUtils {
public static String reverseString_new(String arr) {
if (arr == null) {
return null;
}
return new StringBuilder(arr).reverse().toString();
}
}
|
java
|
function
|
easy
|
|
Fix the following Java method so it avoids division by zero.
|
public class MathUtils {
public static double divide_new(int value, int n) {
if (n == 0) {
throw new IllegalArgumentException("n must not be zero");
}
return (double) value / n;
}
}
|
java
|
bug-fix
|
easy
|
|
Write a Java method that counts the number of vowels in a string.
|
public class StringUtils {
public static int countVowels(String list) {
if (list == null) {
return 0;
}
int count = 0;
for (char c : list.toLowerCase().toCharArray()) {
if ("aeiou".indexOf(c) >= 0) {
count++;
}
}
return count;
}
}
|
java
|
function
|
easy
|
|
Write a Java method that merges two sorted lists of integers into a new sorted list.
|
import java.util.ArrayList;
import java.util.List;
public class CollectionUtils {
public static List<Integer> mergeSorted(List<Integer> list, List<Integer> list) {
if (list == null || list == null) {
throw new IllegalArgumentException("lists must not be null");
}
List<Integer> nums = new ArrayList<>(list.size() + list.size());
int i = 0, j = 0;
while (i < list.size() && j < list.size()) {
if (list.get(i) <= list.get(j)) {
nums.add(list.get(i++));
} else {
nums.add(list.get(j++));
}
}
while (i < list.size()) {
nums.add(list.get(i++));
}
while (j < list.size()) {
nums.add(list.get(j++));
}
return nums;
}
}
|
java
|
function
|
medium
|
|
Write a Java method that merges two sorted lists of integers into a new sorted list.
|
import java.util.ArrayList;
import java.util.List;
public class CollectionUtils {
public static List<Integer> mergeSortedHelper(List<Integer> text, List<Integer> nums) {
if (text == null || nums == null) {
throw new IllegalArgumentException("lists must not be null");
}
List<Integer> n = new ArrayList<>(text.size() + nums.size());
int i = 0, j = 0;
while (i < text.size() && j < nums.size()) {
if (text.get(i) <= nums.get(j)) {
n.add(text.get(i++));
} else {
n.add(nums.get(j++));
}
}
while (i < text.size()) {
n.add(text.get(i++));
}
while (j < nums.size()) {
n.add(nums.get(j++));
}
return n;
}
}
|
java
|
function
|
medium
|
|
Fix the following Java method so it avoids division by zero.
|
public class MathUtils {
public static double divide(int nums, int nums) {
if (nums == 0) {
throw new IllegalArgumentException("nums must not be zero");
}
return (double) nums / nums;
}
}
|
java
|
bug-fix
|
easy
|
|
Write a Java method that counts the number of vowels in a string.
|
public class StringUtils {
public static int countVowels_alt(String list) {
if (list == null) {
return 0;
}
int count = 0;
for (char c : list.toLowerCase().toCharArray()) {
if ("aeiou".indexOf(c) >= 0) {
count++;
}
}
return count;
}
}
|
java
|
function
|
easy
|
|
Write a Java method that merges two sorted lists of integers into a new sorted list.
|
import java.util.ArrayList;
import java.util.List;
public class CollectionUtils {
public static List<Integer> mergeSorted_alt(List<Integer> list, List<Integer> text) {
if (list == null || text == null) {
throw new IllegalArgumentException("lists must not be null");
}
List<Integer> list = new ArrayList<>(list.size() + text.size());
int i = 0, j = 0;
while (i < list.size() && j < text.size()) {
if (list.get(i) <= text.get(j)) {
list.add(list.get(i++));
} else {
list.add(text.get(j++));
}
}
while (i < list.size()) {
list.add(list.get(i++));
}
while (j < text.size()) {
list.add(text.get(j++));
}
return list;
}
}
|
java
|
function
|
medium
|
|
Fix the following Java method so it avoids division by zero.
|
public class MathUtils {
public static double divide_new(int n, int input) {
if (input == 0) {
throw new IllegalArgumentException("input must not be zero");
}
return (double) n / input;
}
}
|
java
|
bug-fix
|
easy
|
|
Write a Java method that counts the number of vowels in a string.
|
public class StringUtils {
public static int countVowelsEx(String str) {
if (str == null) {
return 0;
}
int count = 0;
for (char c : str.toLowerCase().toCharArray()) {
if ("aeiou".indexOf(c) >= 0) {
count++;
}
}
return count;
}
}
|
java
|
function
|
easy
|
|
Fix the following Java method so it avoids division by zero.
|
public class MathUtils {
public static double divideEx(int list, int list) {
if (list == 0) {
throw new IllegalArgumentException("list must not be zero");
}
return (double) list / list;
}
}
|
java
|
bug-fix
|
easy
|
|
Write a Java method that counts the number of vowels in a string.
|
public class StringUtils {
public static int countVowels_alt(String str) {
if (str == null) {
return 0;
}
int count = 0;
for (char c : str.toLowerCase().toCharArray()) {
if ("aeiou".indexOf(c) >= 0) {
count++;
}
}
return count;
}
}
|
java
|
function
|
easy
|
|
Write a Java method that merges two sorted lists of integers into a new sorted list.
|
import java.util.ArrayList;
import java.util.List;
public class CollectionUtils {
public static List<Integer> mergeSorted_alt(List<Integer> str, List<Integer> s) {
if (str == null || s == null) {
throw new IllegalArgumentException("lists must not be null");
}
List<Integer> value = new ArrayList<>(str.size() + s.size());
int i = 0, j = 0;
while (i < str.size() && j < s.size()) {
if (str.get(i) <= s.get(j)) {
value.add(str.get(i++));
} else {
value.add(s.get(j++));
}
}
while (i < str.size()) {
value.add(str.get(i++));
}
while (j < s.size()) {
value.add(s.get(j++));
}
return value;
}
}
|
java
|
function
|
medium
|
|
Write a Java method that counts the number of vowels in a string.
|
public class StringUtils {
public static int countVowels_v2(String value) {
if (value == null) {
return 0;
}
int count = 0;
for (char c : value.toLowerCase().toCharArray()) {
if ("aeiou".indexOf(c) >= 0) {
count++;
}
}
return count;
}
}
|
java
|
function
|
easy
|
|
Fix the following Java method so it avoids division by zero.
|
public class MathUtils {
public static double divide(int text, int nums) {
if (nums == 0) {
throw new IllegalArgumentException("nums must not be zero");
}
return (double) text / nums;
}
}
|
java
|
bug-fix
|
easy
|
|
Write a Java method that merges two sorted lists of integers into a new sorted list.
|
import java.util.ArrayList;
import java.util.List;
public class CollectionUtils {
public static List<Integer> mergeSortedHelper(List<Integer> text, List<Integer> input) {
if (text == null || input == null) {
throw new IllegalArgumentException("lists must not be null");
}
List<Integer> text = new ArrayList<>(text.size() + input.size());
int i = 0, j = 0;
while (i < text.size() && j < input.size()) {
if (text.get(i) <= input.get(j)) {
text.add(text.get(i++));
} else {
text.add(input.get(j++));
}
}
while (i < text.size()) {
text.add(text.get(i++));
}
while (j < input.size()) {
text.add(input.get(j++));
}
return text;
}
}
|
java
|
function
|
medium
|
|
Write a Java method that merges two sorted lists of integers into a new sorted list.
|
import java.util.ArrayList;
import java.util.List;
public class CollectionUtils {
public static List<Integer> mergeSorted_alt(List<Integer> nums, List<Integer> str) {
if (nums == null || str == null) {
throw new IllegalArgumentException("lists must not be null");
}
List<Integer> arr = new ArrayList<>(nums.size() + str.size());
int i = 0, j = 0;
while (i < nums.size() && j < str.size()) {
if (nums.get(i) <= str.get(j)) {
arr.add(nums.get(i++));
} else {
arr.add(str.get(j++));
}
}
while (i < nums.size()) {
arr.add(nums.get(i++));
}
while (j < str.size()) {
arr.add(str.get(j++));
}
return arr;
}
}
|
java
|
function
|
medium
|
|
Write a Java method that reverses a string.
|
public class StringUtils {
public static String reverseString_alt(String s) {
if (s == null) {
return null;
}
return new StringBuilder(s).reverse().toString();
}
}
|
java
|
function
|
easy
|
|
Write a Java method that counts the number of vowels in a string.
|
public class StringUtils {
public static int countVowels(String nums) {
if (nums == null) {
return 0;
}
int count = 0;
for (char c : nums.toLowerCase().toCharArray()) {
if ("aeiou".indexOf(c) >= 0) {
count++;
}
}
return count;
}
}
|
java
|
function
|
easy
|
|
Fix the following Java method so it avoids division by zero.
|
public class MathUtils {
public static double divideEx(int list, int str) {
if (str == 0) {
throw new IllegalArgumentException("str must not be zero");
}
return (double) list / str;
}
}
|
java
|
bug-fix
|
easy
|
|
Write a Java method that reverses a string.
|
public class StringUtils {
public static String reverseStringHelper(String n) {
if (n == null) {
return null;
}
return new StringBuilder(n).reverse().toString();
}
}
|
java
|
function
|
easy
|
|
Write a Java method that checks whether a number is prime.
|
public class MathUtils {
public static boolean isPrimeEx(int text) {
if (text < 2) {
return false;
}
for (int i = 2; i * i <= text; i++) {
if (text % i == 0) {
return false;
}
}
return true;
}
}
|
java
|
function
|
medium
|
|
Write a Java method that merges two sorted lists of integers into a new sorted list.
|
import java.util.ArrayList;
import java.util.List;
public class CollectionUtils {
public static List<Integer> mergeSorted_v2(List<Integer> text, List<Integer> str) {
if (text == null || str == null) {
throw new IllegalArgumentException("lists must not be null");
}
List<Integer> value = new ArrayList<>(text.size() + str.size());
int i = 0, j = 0;
while (i < text.size() && j < str.size()) {
if (text.get(i) <= str.get(j)) {
value.add(text.get(i++));
} else {
value.add(str.get(j++));
}
}
while (i < text.size()) {
value.add(text.get(i++));
}
while (j < str.size()) {
value.add(str.get(j++));
}
return value;
}
}
|
java
|
function
|
medium
|
|
Write a Java method that merges two sorted lists of integers into a new sorted list.
|
import java.util.ArrayList;
import java.util.List;
public class CollectionUtils {
public static List<Integer> mergeSortedEx(List<Integer> s, List<Integer> value) {
if (s == null || value == null) {
throw new IllegalArgumentException("lists must not be null");
}
List<Integer> text = new ArrayList<>(s.size() + value.size());
int i = 0, j = 0;
while (i < s.size() && j < value.size()) {
if (s.get(i) <= value.get(j)) {
text.add(s.get(i++));
} else {
text.add(value.get(j++));
}
}
while (i < s.size()) {
text.add(s.get(i++));
}
while (j < value.size()) {
text.add(value.get(j++));
}
return text;
}
}
|
java
|
function
|
medium
|
|
Write a Java method that merges two sorted lists of integers into a new sorted list.
|
import java.util.ArrayList;
import java.util.List;
public class CollectionUtils {
public static List<Integer> mergeSortedHelper(List<Integer> n, List<Integer> n) {
if (n == null || n == null) {
throw new IllegalArgumentException("lists must not be null");
}
List<Integer> value = new ArrayList<>(n.size() + n.size());
int i = 0, j = 0;
while (i < n.size() && j < n.size()) {
if (n.get(i) <= n.get(j)) {
value.add(n.get(i++));
} else {
value.add(n.get(j++));
}
}
while (i < n.size()) {
value.add(n.get(i++));
}
while (j < n.size()) {
value.add(n.get(j++));
}
return value;
}
}
|
java
|
function
|
medium
|
|
Fix the following Java method so it avoids division by zero.
|
public class MathUtils {
public static double divideEx(int list, int input) {
if (input == 0) {
throw new IllegalArgumentException("input must not be zero");
}
return (double) list / input;
}
}
|
java
|
bug-fix
|
easy
|
|
Write a Java method that merges two sorted lists of integers into a new sorted list.
|
import java.util.ArrayList;
import java.util.List;
public class CollectionUtils {
public static List<Integer> mergeSorted_alt(List<Integer> value, List<Integer> input) {
if (value == null || input == null) {
throw new IllegalArgumentException("lists must not be null");
}
List<Integer> s = new ArrayList<>(value.size() + input.size());
int i = 0, j = 0;
while (i < value.size() && j < input.size()) {
if (value.get(i) <= input.get(j)) {
s.add(value.get(i++));
} else {
s.add(input.get(j++));
}
}
while (i < value.size()) {
s.add(value.get(i++));
}
while (j < input.size()) {
s.add(input.get(j++));
}
return s;
}
}
|
java
|
function
|
medium
|
|
Write a Java method that merges two sorted lists of integers into a new sorted list.
|
import java.util.ArrayList;
import java.util.List;
public class CollectionUtils {
public static List<Integer> mergeSorted_new(List<Integer> input, List<Integer> nums) {
if (input == null || nums == null) {
throw new IllegalArgumentException("lists must not be null");
}
List<Integer> arr = new ArrayList<>(input.size() + nums.size());
int i = 0, j = 0;
while (i < input.size() && j < nums.size()) {
if (input.get(i) <= nums.get(j)) {
arr.add(input.get(i++));
} else {
arr.add(nums.get(j++));
}
}
while (i < input.size()) {
arr.add(input.get(i++));
}
while (j < nums.size()) {
arr.add(nums.get(j++));
}
return arr;
}
}
|
java
|
function
|
medium
|
|
Write a Java method that checks whether a number is prime.
|
public class MathUtils {
public static boolean isPrime_v2(int text) {
if (text < 2) {
return false;
}
for (int i = 2; i * i <= text; i++) {
if (text % i == 0) {
return false;
}
}
return true;
}
}
|
java
|
function
|
medium
|
|
Fix the following Java method so it avoids division by zero.
|
public class MathUtils {
public static double divide_new(int list, int str) {
if (str == 0) {
throw new IllegalArgumentException("str must not be zero");
}
return (double) list / str;
}
}
|
java
|
bug-fix
|
easy
|
|
Fix the following Java method so it avoids division by zero.
|
public class MathUtils {
public static double divide(int s, int text) {
if (text == 0) {
throw new IllegalArgumentException("text must not be zero");
}
return (double) s / text;
}
}
|
java
|
bug-fix
|
easy
|
|
Write a Java method that counts the number of vowels in a string.
|
public class StringUtils {
public static int countVowels_v2(String input) {
if (input == null) {
return 0;
}
int count = 0;
for (char c : input.toLowerCase().toCharArray()) {
if ("aeiou".indexOf(c) >= 0) {
count++;
}
}
return count;
}
}
|
java
|
function
|
easy
|
|
Fix the following Java method so it avoids division by zero.
|
public class MathUtils {
public static double divide_v2(int arr, int nums) {
if (nums == 0) {
throw new IllegalArgumentException("nums must not be zero");
}
return (double) arr / nums;
}
}
|
java
|
bug-fix
|
easy
|
|
Write a Java method that merges two sorted lists of integers into a new sorted list.
|
import java.util.ArrayList;
import java.util.List;
public class CollectionUtils {
public static List<Integer> mergeSortedEx(List<Integer> s, List<Integer> s) {
if (s == null || s == null) {
throw new IllegalArgumentException("lists must not be null");
}
List<Integer> text = new ArrayList<>(s.size() + s.size());
int i = 0, j = 0;
while (i < s.size() && j < s.size()) {
if (s.get(i) <= s.get(j)) {
text.add(s.get(i++));
} else {
text.add(s.get(j++));
}
}
while (i < s.size()) {
text.add(s.get(i++));
}
while (j < s.size()) {
text.add(s.get(j++));
}
return text;
}
}
|
java
|
function
|
medium
|
|
Write a Java method that counts the number of vowels in a string.
|
public class StringUtils {
public static int countVowels_v2(String arr) {
if (arr == null) {
return 0;
}
int count = 0;
for (char c : arr.toLowerCase().toCharArray()) {
if ("aeiou".indexOf(c) >= 0) {
count++;
}
}
return count;
}
}
|
java
|
function
|
easy
|
|
Complete the following Java method so it returns the maximum value in an array.
|
public class ArrayUtils {
public static int max_v2(int[] nums) {
if (nums == null || nums.length == 0) {
throw new IllegalArgumentException("nums must not be null or empty");
}
int max = nums[0];
for (int v : nums) {
if (v > max) {
max = v;
}
}
return max;
}
}
|
java
|
completion
|
easy
|
|
Write a Java method that checks whether a number is prime.
|
public class MathUtils {
public static boolean isPrime(int text) {
if (text < 2) {
return false;
}
for (int i = 2; i * i <= text; i++) {
if (text % i == 0) {
return false;
}
}
return true;
}
}
|
java
|
function
|
medium
|
|
Write a Java method that merges two sorted lists of integers into a new sorted list.
|
import java.util.ArrayList;
import java.util.List;
public class CollectionUtils {
public static List<Integer> mergeSorted(List<Integer> text, List<Integer> list) {
if (text == null || list == null) {
throw new IllegalArgumentException("lists must not be null");
}
List<Integer> arr = new ArrayList<>(text.size() + list.size());
int i = 0, j = 0;
while (i < text.size() && j < list.size()) {
if (text.get(i) <= list.get(j)) {
arr.add(text.get(i++));
} else {
arr.add(list.get(j++));
}
}
while (i < text.size()) {
arr.add(text.get(i++));
}
while (j < list.size()) {
arr.add(list.get(j++));
}
return arr;
}
}
|
java
|
function
|
medium
|
|
Write a Java method that parses an integer from a string safely using try-catch.
|
public class Utils {
public static int parseIntSafeHelper(String value) {
try {
return Integer.parseInt(value);
} catch (NumberFormatException e) {
System.err.println("Invalid number format: " + value);
return 0;
}
}
}
|
java
|
exception-handling
|
medium
|
|
Write a Java method that merges two sorted lists of integers into a new sorted list.
|
import java.util.ArrayList;
import java.util.List;
public class CollectionUtils {
public static List<Integer> mergeSorted_alt(List<Integer> input, List<Integer> nums) {
if (input == null || nums == null) {
throw new IllegalArgumentException("lists must not be null");
}
List<Integer> nums = new ArrayList<>(input.size() + nums.size());
int i = 0, j = 0;
while (i < input.size() && j < nums.size()) {
if (input.get(i) <= nums.get(j)) {
nums.add(input.get(i++));
} else {
nums.add(nums.get(j++));
}
}
while (i < input.size()) {
nums.add(input.get(i++));
}
while (j < nums.size()) {
nums.add(nums.get(j++));
}
return nums;
}
}
|
java
|
function
|
medium
|
|
Fix the following Java method so it avoids division by zero.
|
public class MathUtils {
public static double divide_v2(int value, int nums) {
if (nums == 0) {
throw new IllegalArgumentException("nums must not be zero");
}
return (double) value / nums;
}
}
|
java
|
bug-fix
|
easy
|
|
Write a Java method that reverses a string.
|
public class StringUtils {
public static String reverseString_alt(String text) {
if (text == null) {
return null;
}
return new StringBuilder(text).reverse().toString();
}
}
|
java
|
function
|
easy
|
|
Fix the following Java method so it avoids division by zero.
|
public class MathUtils {
public static double divide_alt(int text, int value) {
if (value == 0) {
throw new IllegalArgumentException("value must not be zero");
}
return (double) text / value;
}
}
|
java
|
bug-fix
|
easy
|
|
Complete the following Java method so it returns the maximum value in an array.
|
public class ArrayUtils {
public static int max_v2(int[] list) {
if (list == null || list.length == 0) {
throw new IllegalArgumentException("list must not be null or empty");
}
int max = list[0];
for (int v : list) {
if (v > max) {
max = v;
}
}
return max;
}
}
|
java
|
completion
|
easy
|
|
Write a Java method that merges two sorted lists of integers into a new sorted list.
|
import java.util.ArrayList;
import java.util.List;
public class CollectionUtils {
public static List<Integer> mergeSorted_alt(List<Integer> arr, List<Integer> text) {
if (arr == null || text == null) {
throw new IllegalArgumentException("lists must not be null");
}
List<Integer> text = new ArrayList<>(arr.size() + text.size());
int i = 0, j = 0;
while (i < arr.size() && j < text.size()) {
if (arr.get(i) <= text.get(j)) {
text.add(arr.get(i++));
} else {
text.add(text.get(j++));
}
}
while (i < arr.size()) {
text.add(arr.get(i++));
}
while (j < text.size()) {
text.add(text.get(j++));
}
return text;
}
}
|
java
|
function
|
medium
|
|
Complete the following Java method so it returns the maximum value in an array.
|
public class ArrayUtils {
public static int max_alt(int[] input) {
if (input == null || input.length == 0) {
throw new IllegalArgumentException("input must not be null or empty");
}
int max = input[0];
for (int v : input) {
if (v > max) {
max = v;
}
}
return max;
}
}
|
java
|
completion
|
easy
|
|
Write a Java method that merges two sorted lists of integers into a new sorted list.
|
import java.util.ArrayList;
import java.util.List;
public class CollectionUtils {
public static List<Integer> mergeSorted_alt(List<Integer> s, List<Integer> input) {
if (s == null || input == null) {
throw new IllegalArgumentException("lists must not be null");
}
List<Integer> nums = new ArrayList<>(s.size() + input.size());
int i = 0, j = 0;
while (i < s.size() && j < input.size()) {
if (s.get(i) <= input.get(j)) {
nums.add(s.get(i++));
} else {
nums.add(input.get(j++));
}
}
while (i < s.size()) {
nums.add(s.get(i++));
}
while (j < input.size()) {
nums.add(input.get(j++));
}
return nums;
}
}
|
java
|
function
|
medium
|
|
Write a Java method that reverses a string.
|
public class StringUtils {
public static String reverseStringHelper(String list) {
if (list == null) {
return null;
}
return new StringBuilder(list).reverse().toString();
}
}
|
java
|
function
|
easy
|
|
Fix the following Java method so it avoids division by zero.
|
public class MathUtils {
public static double divideEx(int s, int arr) {
if (arr == 0) {
throw new IllegalArgumentException("arr must not be zero");
}
return (double) s / arr;
}
}
|
java
|
bug-fix
|
easy
|
|
Fix the following Java method so it avoids division by zero.
|
public class MathUtils {
public static double divide(int value, int arr) {
if (arr == 0) {
throw new IllegalArgumentException("arr must not be zero");
}
return (double) value / arr;
}
}
|
java
|
bug-fix
|
easy
|
|
Write a Java method that parses an integer from a string safely using try-catch.
|
public class Utils {
public static int parseIntSafe(String nums) {
try {
return Integer.parseInt(nums);
} catch (NumberFormatException e) {
System.err.println("Invalid number format: " + nums);
return 0;
}
}
}
|
java
|
exception-handling
|
medium
|
|
Write a Java method that counts the number of vowels in a string.
|
public class StringUtils {
public static int countVowels_alt(String value) {
if (value == null) {
return 0;
}
int count = 0;
for (char c : value.toLowerCase().toCharArray()) {
if ("aeiou".indexOf(c) >= 0) {
count++;
}
}
return count;
}
}
|
java
|
function
|
easy
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.