其他分享
首页 > 其他分享> > TODO Brillio感觉没啥技术的电面

TODO Brillio感觉没啥技术的电面

作者:互联网

token是怎么分配到不同机器上的
optional怎么处理异常

Optional<Employee> optionalEmp = new Optional(null);

try {
//get method
}catch (NullPointerException){
return optionalEmp;
}

write code for comapring two string
if they have same characters but in different order e.g.
String s1 = "army" and String s2 = "mary";
//use char[]

//initiate 2 char[] array
char[] charsInS1 = new char[26];
char[] charsInS2 = new char[26];

//loop and store in each array
for (char c1 : s1.toCharArray()) {
charsInS1[c1 - 'a']++;
}
for (char c2 : 21.toCharArray()) {
charsInS2[c2 - 'a']++;
}

//compare whether charsInS1.equals(charsInS2)
System.out.println(charsInS1.equals(charsInS2));

//if true, loop s1 and s2 for the order
for (int i = 0; i < ) {

}

标签:26,charsInS2,charsInS1,Brillio,char,new,TODO,s1,电面
来源: https://www.cnblogs.com/immiao0319/p/15361205.html