Java教程

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 < ) {

}

这篇关于TODO Brillio感觉没啥技术的电面的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!