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 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> input, List<Integer> nums) { if (input == null || nums == null) { throw new IllegalArgumentException("lists must not be null"); } List<I...
java
function
medium
Write a Java method that parses an integer from a string safely using try-catch.
public class Utils { public static int parseIntSafe(String n) { try { return Integer.parseInt(n); } catch (NumberFormatException e) { System.err.println("Invalid number format: " + n); return 0; } } }
java
exception-handling
medium
Write a Java method that parses an integer from a string safely using try-catch.
public class Utils { public static int parseIntSafe_new(String str) { try { return Integer.parseInt(str); } catch (NumberFormatException e) { System.err.println("Invalid number format: " + str); 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_new(String s) { if (s == null) { return 0; } int count = 0; for (char c : s.toLowerCase().toCharArray()) { if ("aeiou".indexOf(c) >= 0) { count++; } } return ...
java
function
easy
Complete the following Java method so it returns the maximum value in an array.
public class ArrayUtils { public static int maxEx(int[] arr) { if (arr == null || arr.length == 0) { throw new IllegalArgumentException("arr must not be null or empty"); } int max = arr[0]; for (int v : arr) { if (v > max) { max = v; ...
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(List<Integer> n, List<Integer> n) { if (n == null || n == null) { throw new IllegalArgumentException("lists must not be null"); } List<Integer> s = new Arra...
java
function
medium
Write a Java method that reverses a string.
public class StringUtils { public static String reverseStringHelper(String str) { if (str == null) { return null; } return new StringBuilder(str).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> mergeSortedEx(List<Integer> n, List<Integer> nums) { if (n == null || nums == null) { throw new IllegalArgumentException("lists must not be null"); } List<Integer> valu...
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> s, List<Integer> arr) { if (s == null || arr == null) { throw new IllegalArgumentException("lists must not be null"); } List<Integer> s = ...
java
function
medium
Fix the following Java method so it avoids division by zero.
public class MathUtils { public static double divide_new(int nums, int list) { if (list == 0) { throw new IllegalArgumentException("list must not be zero"); } return (double) nums / list; } }
java
bug-fix
easy
Complete the following Java method so it returns the maximum value in an array.
public class ArrayUtils { public static int maxEx(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; ...
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> list, List<Integer> s) { if (list == null || s == null) { throw new IllegalArgumentException("lists must not be null"); } List<Integer> va...
java
function
medium
Fix the following Java method so it avoids division by zero.
public class MathUtils { public static double divide_alt(int n, int n) { if (n == 0) { throw new IllegalArgumentException("n must not be zero"); } return (double) n / n; } }
java
bug-fix
easy
Fix the following Java method so it avoids division by zero.
public class MathUtils { public static double divide_new(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 reverses a string.
public class StringUtils { public static String reverseString(String n) { if (n == null) { return null; } return new StringBuilder(n).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 parseIntSafeHelper(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[] 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 ...
java
completion
easy
Write a Java method that counts the number of vowels in a string.
public class StringUtils { public static int countVowels_alt(String text) { if (text == null) { return 0; } int count = 0; for (char c : text.toLowerCase().toCharArray()) { if ("aeiou".indexOf(c) >= 0) { count++; } } ...
java
function
easy
Fix the following Java method so it avoids division by zero.
public class MathUtils { public static double divide_alt(int arr, int s) { if (s == 0) { throw new IllegalArgumentException("s must not be zero"); } return (double) arr / s; } }
java
bug-fix
easy
Write a Java method that checks whether a number is prime.
public class MathUtils { public static boolean isPrime_new(int n) { if (n < 2) { return false; } for (int i = 2; i * i <= n; i++) { if (n % i == 0) { return false; } } return true; } }
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[] n) { if (n == null || n.length == 0) { throw new IllegalArgumentException("n must not be null or empty"); } int max = n[0]; for (int v : n) { if (v > max) { max = v; } ...
java
completion
easy
Complete the following Java method so it returns the maximum value in an array.
public class ArrayUtils { public static int max(int[] arr) { if (arr == null || arr.length == 0) { throw new IllegalArgumentException("arr must not be null or empty"); } int max = arr[0]; for (int v : arr) { if (v > max) { max = v; ...
java
completion
easy
Write a Java method that reverses a string.
public class StringUtils { public static String reverseString_new(String nums) { if (nums == null) { return null; } return new StringBuilder(nums).reverse().toString(); } }
java
function
easy
Fix the following Java method so it avoids division by zero.
public class MathUtils { public static double divideHelper(int value, int list) { if (list == 0) { throw new IllegalArgumentException("list must not be zero"); } return (double) value / list; } }
java
bug-fix
easy
Fix the following Java method so it avoids division by zero.
public class MathUtils { public static double divide_alt(int nums, int str) { if (str == 0) { throw new IllegalArgumentException("str must not be zero"); } return (double) nums / str; } }
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 nums) { try { return Integer.parseInt(nums); } catch (NumberFormatException e) { System.err.println("Invalid number format: " + nums); 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(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;...
java
completion
easy
Write a Java method that reverses a string.
public class StringUtils { public static String reverseStringHelper(String input) { if (input == null) { return null; } return new StringBuilder(input).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> mergeSortedHelper(List<Integer> n, List<Integer> value) { if (n == null || value == null) { throw new IllegalArgumentException("lists must not be null"); } List<Integer...
java
function
medium
Fix the following Java method so it avoids division by zero.
public class MathUtils { public static double divide_alt(int s, int list) { if (list == 0) { throw new IllegalArgumentException("list must not be zero"); } return (double) s / list; } }
java
bug-fix
easy
Write a Java method that reverses a string.
public class StringUtils { public static String reverseString_new(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 str, int nums) { if (nums == 0) { throw new IllegalArgumentException("nums must not be zero"); } return (double) str / nums; } }
java
bug-fix
easy
Fix the following Java method so it avoids division by zero.
public class MathUtils { public static double divideEx(int nums, int n) { if (n == 0) { throw new IllegalArgumentException("n must not be zero"); } return (double) nums / n; } }
java
bug-fix
easy
Write a Java method that reverses a string.
public class StringUtils { public static String reverseStringEx(String str) { if (str == null) { return null; } return new StringBuilder(str).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(List<Integer> text, List<Integer> text) { if (text == null || text == null) { throw new IllegalArgumentException("lists must not be null"); } List<Integer> ...
java
function
medium
Write a Java method that counts the number of vowels in a string.
public class StringUtils { public static int countVowelsHelper(String arr) { if (arr == null) { return 0; } int count = 0; for (char c : arr.toLowerCase().toCharArray()) { if ("aeiou".indexOf(c) >= 0) { count++; } } ...
java
function
easy
Fix the following Java method so it avoids division by zero.
public class MathUtils { public static double divideHelper(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 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> s) { if (text == null || s == null) { throw new IllegalArgumentException("lists must not be null"); } List<Integer> li...
java
function
medium
Write a Java method that checks whether a number is prime.
public class MathUtils { public static boolean isPrimeEx(int nums) { if (nums < 2) { return false; } for (int i = 2; i * i <= nums; i++) { if (nums % 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_alt(List<Integer> text, List<Integer> s) { if (text == null || s == null) { throw new IllegalArgumentException("lists must not be null"); } List<Integer> ar...
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> n, List<Integer> n) { if (n == null || n == null) { throw new IllegalArgumentException("lists must not be null"); } List<Integer> nums = n...
java
function
medium
Write a Java method that counts the number of vowels in a string.
public class StringUtils { public static int countVowels_new(String n) { if (n == null) { return 0; } int count = 0; for (char c : n.toLowerCase().toCharArray()) { if ("aeiou".indexOf(c) >= 0) { count++; } } return ...
java
function
easy
Write a Java method that reverses a string.
public class StringUtils { public static String reverseString_v2(String nums) { if (nums == null) { return null; } return new StringBuilder(nums).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(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> arr, List<Integer> nums) { if (arr == null || nums == null) { throw new IllegalArgumentException("lists must not be null"); } List<Integer...
java
function
medium
Fix the following Java method so it avoids division by zero.
public class MathUtils { public static double divide_alt(int nums, int list) { if (list == 0) { throw new IllegalArgumentException("list must not be zero"); } return (double) nums / list; } }
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_alt(int[] value) { if (value == null || value.length == 0) { throw new IllegalArgumentException("value must not be null or empty"); } int max = value[0]; for (int v : value) { if (v > max) { max ...
java
completion
easy
Fix the following Java method so it avoids division by zero.
public class MathUtils { public static double divide_alt(int n, int value) { if (value == 0) { throw new IllegalArgumentException("value must not be zero"); } return (double) n / value; } }
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(List<Integer> text, List<Integer> value) { if (text == null || value == null) { throw new IllegalArgumentException("lists must not be null"); } List<Integer...
java
function
medium
Write a Java method that counts the number of vowels in a string.
public class StringUtils { public static int countVowels(String arr) { if (arr == null) { return 0; } int count = 0; for (char c : arr.toLowerCase().toCharArray()) { if ("aeiou".indexOf(c) >= 0) { count++; } } retur...
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 input) { if (input == 0) { throw new IllegalArgumentException("input must not be zero"); } return (double) arr / 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> mergeSortedEx(List<Integer> n, List<Integer> nums) { if (n == null || nums == null) { throw new IllegalArgumentException("lists must not be null"); } List<Integer> nums...
java
function
medium
Write a Java method that parses an integer from a string safely using try-catch.
public class Utils { public static int parseIntSafeEx(String n) { try { return Integer.parseInt(n); } catch (NumberFormatException e) { System.err.println("Invalid number format: " + n); return 0; } } }
java
exception-handling
medium
Write a Java method that checks whether a number is prime.
public class MathUtils { public static boolean isPrimeHelper(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 reverses a string.
public class StringUtils { public static String reverseString_alt(String nums) { if (nums == null) { return null; } return new StringBuilder(nums).reverse().toString(); } }
java
function
easy
Write a Java method that checks whether a number is prime.
public class MathUtils { public static boolean isPrime_alt(int nums) { if (nums < 2) { return false; } for (int i = 2; i * i <= nums; i++) { if (nums % i == 0) { return false; } } return true; } }
java
function
medium
Write a Java method that parses an integer from a string safely using try-catch.
public class Utils { public static int parseIntSafe_alt(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 maxHelper(int[] n) { if (n == null || n.length == 0) { throw new IllegalArgumentException("n must not be null or empty"); } int max = n[0]; for (int v : n) { if (v > max) { max = v; } ...
java
completion
easy
Write a Java method that checks whether a number is prime.
public class MathUtils { public static boolean isPrime_alt(int value) { if (value < 2) { return false; } for (int i = 2; i * i <= value; i++) { if (value % 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 input) { if (input < 2) { return false; } for (int i = 2; i * i <= input; i++) { if (input % i == 0) { return false; } } return true; } }
java
function
medium
Write a Java method that parses an integer from a string safely using try-catch.
public class Utils { public static int parseIntSafeEx(String value) { try { return Integer.parseInt(value); } catch (NumberFormatException e) { System.err.println("Invalid number format: " + value); return 0; } } }
java
exception-handling
medium
Fix the following Java method so it avoids division by zero.
public class MathUtils { public static double divide_v2(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_v2(String s) { try { return Integer.parseInt(s); } catch (NumberFormatException e) { System.err.println("Invalid number format: " + s); 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[] n) { if (n == null || n.length == 0) { throw new IllegalArgumentException("n must not be null or empty"); } int max = n[0]; for (int v : n) { if (v > max) { max = v; } ...
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...
java
function
medium
Fix the following Java method so it avoids division by zero.
public class MathUtils { public static double divide_alt(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 reverses a string.
public class StringUtils { public static String reverseString(String arr) { if (arr == null) { return null; } return new StringBuilder(arr).reverse().toString(); } }
java
function
easy
Write a Java method that reverses a string.
public class StringUtils { public static String reverseString_v2(String input) { if (input == null) { return null; } return new StringBuilder(input).reverse().toString(); } }
java
function
easy
Write a Java method that reverses a string.
public class StringUtils { public static String reverseString_new(String input) { if (input == null) { return null; } return new StringBuilder(input).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> mergeSortedHelper(List<Integer> input, List<Integer> text) { if (input == null || text == null) { throw new IllegalArgumentException("lists must not be null"); } List<I...
java
function
medium
Write a Java method that reverses a string.
public class StringUtils { public static String reverseString(String str) { if (str == null) { return null; } return new StringBuilder(str).reverse().toString(); } }
java
function
easy
Write a Java method that checks whether a number is prime.
public class MathUtils { public static boolean isPrime_alt(int n) { if (n < 2) { return false; } for (int i = 2; i * i <= n; i++) { if (n % 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 str, int n) { if (n == 0) { throw new IllegalArgumentException("n must not be zero"); } return (double) str / n; } }
java
bug-fix
easy
Fix the following Java method so it avoids division by zero.
public class MathUtils { public static double divide(int list, int text) { if (text == 0) { throw new IllegalArgumentException("text must not be zero"); } return (double) list / text; } }
java
bug-fix
easy
Fix the following Java method so it avoids division by zero.
public class MathUtils { public static double divideHelper(int input, int n) { if (n == 0) { throw new IllegalArgumentException("n must not be zero"); } return (double) input / n; } }
java
bug-fix
easy
Write a Java method that checks whether a number is prime.
public class MathUtils { public static boolean isPrimeHelper(int n) { if (n < 2) { return false; } for (int i = 2; i * i <= n; i++) { if (n % 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_alt(int text, int str) { if (str == 0) { throw new IllegalArgumentException("str must not be zero"); } return (double) text / str; } }
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 parseIntSafeHelper(String list) { try { return Integer.parseInt(list); } catch (NumberFormatException e) { System.err.println("Invalid number format: " + list); 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 text, int str) { if (str == 0) { throw new IllegalArgumentException("str must not be zero"); } return (double) text / str; } }
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(List<Integer> list, List<Integer> text) { if (list == null || text == null) { throw new IllegalArgumentException("lists must not be null"); } List<Integer> ...
java
function
medium
Complete the following Java method so it returns the maximum value in an array.
public class ArrayUtils { public static int max(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; ...
java
completion
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 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(List<Integer> arr, List<Integer> list) { if (arr == null || list == null) { throw new IllegalArgumentException("lists must not be null"); } List<Integer> st...
java
function
medium
Write a Java method that counts the number of vowels in a string.
public class StringUtils { public static int countVowels_alt(String n) { if (n == null) { return 0; } int count = 0; for (char c : n.toLowerCase().toCharArray()) { if ("aeiou".indexOf(c) >= 0) { count++; } } return ...
java
function
easy
Write a Java method that checks whether a number is prime.
public class MathUtils { public static boolean isPrimeEx(int value) { if (value < 2) { return false; } for (int i = 2; i * i <= value; i++) { if (value % 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 isPrimeHelper(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
Complete the following Java method so it returns the maximum value in an array.
public class ArrayUtils { public static int maxEx(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; ...
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_v2(List<Integer> arr, List<Integer> str) { if (arr == null || str == null) { throw new IllegalArgumentException("lists must not be null"); } List<Integer> i...
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> list, List<Integer> nums) { if (list == null || nums == null) { throw new IllegalArgumentException("lists must not be null"); } List<Intege...
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> arr, List<Integer> value) { if (arr == null || value == null) { throw new IllegalArgumentException("lists must not be null"); } List<Integer> ...
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> n, List<Integer> str) { if (n == null || str == null) { throw new IllegalArgumentException("lists must not be null"); } List<Integer> str ...
java
function
medium
Fix the following Java method so it avoids division by zero.
public class MathUtils { public static double divide_v2(int arr, int str) { if (str == 0) { throw new IllegalArgumentException("str must not be zero"); } return (double) arr / str; } }
java
bug-fix
easy
Write a Java method that reverses a string.
public class StringUtils { public static String reverseString(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 countVowelsHelper(String nums) { if (nums == null) { return 0; } int count = 0; for (char c : nums.toLowerCase().toCharArray()) { if ("aeiou".indexOf(c) >= 0) { count++; } } ...
java
function
easy
Write a Java method that checks whether a number is prime.
public class MathUtils { public static boolean isPrime_new(int nums) { if (nums < 2) { return false; } for (int i = 2; i * i <= nums; i++) { if (nums % 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 n, int value) { if (value == 0) { throw new IllegalArgumentException("value must not be zero"); } return (double) n / value; } }
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> list) { if (s == null || list == null) { throw new IllegalArgumentException("lists must not be null"); } List<Integer> text...
java
function
medium
Write a Java method that checks whether a number is prime.
public class MathUtils { public static boolean isPrime_v2(int str) { if (str < 2) { return false; } for (int i = 2; i * i <= str; i++) { if (str % i == 0) { return false; } } return true; } }
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[] 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; ...
java
completion
easy
Fix the following Java method so it avoids division by zero.
public class MathUtils { public static double divide_v2(int n, int value) { if (value == 0) { throw new IllegalArgumentException("value must not be zero"); } return (double) n / value; } }
java
bug-fix
easy