9653/check-whether-the-string-is-palindrome-or-not
You may refer the below code:
public static boolean Palindrom(char[] word)
{ int i1 = 0; int i2 = word.length - 1; while (i2 > i1)
{ if (word[i1] != word[i2])
{ return false; } ++i1; --i2;
} return true; }
str != null && str.length() != 0 alternatively str ...READ MORE
Using nio we can check whether file ...READ MORE
Java 8 Lambda Expression is used: String someString ...READ MORE
You can also use regular expression. str.matches("-?\\d+"); It will ...READ MORE
You can use Java Runtime.exec() to run python script, ...READ MORE
First, find an XPath which will return ...READ MORE
See, both are used to retrieve something ...READ MORE
Nothing to worry about here. In the ...READ MORE
Probably you'd have to ask the Java ...READ MORE
JRE: It stands for Java Runtime Environment. ...READ MORE
OR
At least 1 upper-case and 1 lower-case letter
Minimum 8 characters and Maximum 50 characters
Already have an account? Sign in.