androidenthusiast
BAN USER
- 5of 5 votes
AnswerWhy facebook?
- androidenthusiast in United States
What was the biggest technical problem that you solved?
Do you have any apps on google play?
Give me a scenario where the requirements were ambiguous, what did you do?| Report Duplicate | Flag | PURGE
Facebook Android Engineer Behavioral - 0of 0 votes
AnswersDesign Instagram like app end to end
- androidenthusiast in United States| Report Duplicate | Flag | PURGE
Facebook Android Engineer design - 0of 0 votes
AnswersGiven a string "L*&EVe)))l", write a method which will determine if the input is a palindrome. Ignore all special characters. Uppercase/lowercase should be considered as same.
- androidenthusiast in United States| Report Duplicate | Flag | PURGE
Facebook Android Engineer Java - 0of 0 votes
AnswersImagine a room full of people, with only 1 celebrity in the room. Celebrity is defined as a person who does not know anyone, but everyone knows him/her. Write a method who will take array of people and a person as input and return boolean if the person is a celebrity or not.
- androidenthusiast in United States| Report Duplicate | Flag | PURGE
Facebook Android Engineer Java
static String isRectangle(int[][] arr) {
int row = 0;
int col = 0;
int result = 0;
while(row < arr.length - 2) {
if(arr[row][col] == 1 && arr[row + 2][col+2] == 1 && arr[row + 2][col] == 1 && arr[row][col+2] == 1) {
return "YES";
}
row++;
}
row = 0;
while(col < arr.length - 2) {
if(arr[row][col] == 1 && arr[row + 2][col+2] == 1 && arr[row + 2][col] == 1 && arr[row][col+2] == 1) {
return "YES";
}
col++;
}
return "NO";
}
RepI am Jenae Wilder and I work as a content writer, A writer at day, and a reader at night ...
Rephenryhokinsh, Android test engineer at ABC TECH SUPPORT
I’m Henry, I am Children's librarian in Rolling Thunder .My Work involves the responsibility for supervising the children ...
Repjuanitajboon, Applications Developer at 247quickbookshelp
Hi everyone, I am from Pelham. I currently work in the Hechinger as Cashier.I like to do creative things ...
RepI graduated from College with a master’s degree in arthrogryposis. After graduation I am working as a manager in ...
RepI am Rasha , C/C++ certified Computer Programmer with expert-level competency in JavaScript, HTML and JSP and more than 6 ...
Repshawt146, Applications Developer at ADP
I love Exploring and photography. I want to fill my life with happiness and beautiful mammaries. I also like to ...
Repman254183, Project Leader at GoDaddy
I am working as Human Resources Associates, and my duties are for obtaining, recording, and interpreting human resources information within ...
Repsarciasonda, Associate at ABC TECH SUPPORT
Computer forensics investigators, also known as computer forensics specialists, computer forensics examiners, government , accounting firms, law firms, banks, and software ...
Repmelissattaylor, AT&T Customer service email at Bankbazaar
Je suis membre participant du chapitre de Virginie de l'Association nationale du travail social. J'aime lire et écrire ...
Repkennypmillerk, AT&T Customer service email at 247quickbookshelp
My name is Kenny and I am working as a trusted investor in Pittsburgh USA.I identify / set up a ...
RepRileyAllen, Analyst at British Telecom
I enjoy spending my spare time outside and engaging in activities such as hiking, swimming, biking, and jogging. Explore new ...
RepHey, I am Margaret Salas, and I am working as a Web Developer Manager. And nowadays I am doing a ...
RepGiannaDavid, Author at The times
I am an Author, I have a passion for reading and creative writing and attend many workshops and conventions surrounding ...
This will work for any input , not just for "12"
- androidenthusiast November 19, 2017