mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 08:50:57 +07:00
11 lines
214 B
Plaintext
11 lines
214 B
Plaintext
|
|
class Test {
|
|
|
|
boolean use(String s) {
|
|
String s1 = s + s;
|
|
if (s1 == null) return true;
|
|
s1 = s1.trim();
|
|
if (s1.isEmpty()) return true;
|
|
return s1.length() % 2 != 0;
|
|
}
|
|
} |