28 of 100 menu

Java Taskbook Level 3.8

Given an array of integers, check that all numbers in this array contain the digit 3.

Given a string:

"12034050607"

Find the position of the third zero in the string.

Integer numbers are written separated by commas:

String str = "1,2,10,100,3";

Get the maximum of these numbers.

Given a line:

String str = "abcde";

Get an array of characters from this string:

char[] {'a', 'b', 'c', 'd', 'e'}

Given a string in the format:

"kebab-case"

Convert it to the format:

"snake_case"

Given a string in the format:

"snake_case"

Convert it to the format:

"camelCase"

Given a string in the format:

"camelCase"

Convert it to the format:

"snake_case"
enru