chiragtayal
BAN USER
syso ( (char) (findValue +'a'))
- chiragtayal February 28, 2013Livelocks
- chiragtayal February 28, 2013public static int multiply(int a, int b){
if(a==0||b==0) return 0;
int sign = 0;
if(((a>>31) &0x1) == 1){
sign = 1;
a = ~a + 1;
}if(((b>>31) & 0x1) == 1){
if (sign == 0)sign = 1;
else sign = 0;
b = ~b + 1;
}
int mul = 0;
//System.out.println(b + " "+ a);
while(b>0){
if((b & 0x1) > 0){
mul +=a;
}
b = b>>1;
a = a<<1;
}
if (sign ==1)
return ~mul + 1 ;
return mul;
}
Use suffix tree
build suffix tree for 1st file and then search every string from second file..if not found return
-Check the default page settings in the option menu and try to change and reload again
-Try to reload IE multiple times and check the count of occurrences.
-Empty the cache and reload again
-Type in the URL and search might be there is problem with navigation bar
-Move my mouse all over the browser and check the status bar...might be page is hidden behind white browser screen (I am not sure whether this could be the case ever still a good test case)
-Check the scroll bar might be page is auto scrolled
-Check whether I am on private browsing...on some browser page is blank in that case
-Right click to select the page source code and check if it is showing blank
-Try to re-install IE
Repshivanojasy, Apple Phone Number available 24/7 for our Customers at A9
Dedicated worker with a following of regular customers and an understanding of sales and marketing.During my time away from ...
Repjimbtam, Backend Developer at ASAPInfosystemsPvtLtd
I was extremely into photography for a number of years.My father was also interested in photography, so I was ...
RepJanetCKeel, Accountant at ABC TECH SUPPORT
Hey i am Janet i am from Us and i leave here from last 4 years .My job is truck ...
RepHondaRonda, Accountant at Achieve Internet
I am a communications specialist who develops and nurtures relationships between an organisation, members of the media and the public ...
RepElkeRoll, Animator at A9
I am Elke from the USA. I am working as a technologist in Hill-Behan company. I perform and analyze the ...
RepLisaBAllen, Accountant at ABC TECH SUPPORT
I am Lisa a certified Personal Trainer with more than 7 years experience in the local and international fitness scene ...
RepI am working as a Software quality assurance analyst in Turtle's Records company. I look for flaws and weaknesses ...
Repsherykasper, Accountant at A9
Bonjour, je travaille dans une entreprise en tant que caissier. J'habite à Maysville mais je suis en fait d ...
Repirmajrichh, Junior programmer at AppNexus
I am Irma, seeking the position of a Historical Researcher at Littler’s where my expertise can be utilized to ...
Repjbacklit, abc at 247quickbookshelp
I am working as a news anchor and i love my job i an working from last 4 years under ...
Repkalerkant98, abc at ADP
I am DennisRue, seeking an entry level position where my strong work ethics and ability to learn quickly will contribute ...
RepHelenBMartin, Android Engineer at ABC TECH SUPPORT
I am an avid reader and a leader and participant in a community book club. My reading Kamakhya Mandir Tantrik ...
RepHey, I am Ruth and I am working as an interviewer.I take too many Interviews For my Company and ...
RepSaraLopez, abc at ADP
Experienced in all aspects of business formation, operation, finance, and management. Visionary product developer with deep education in research and ...
Reploreleijhansen, Aghori Mahakal Tantrik at ABC TECH SUPPORT
I am Lorelei.I am working in a store as a Bonus clerk promoting the development, and implementation and solutions ...
RepMariaBJiles, Accountant at A9
I am working as a team leader in a development software company. I am creative in learning how to crochet ...
Rephazelwlson80, abc at A9
I am a skilled civil engineer with many years of experience in a variety of engineering aspects. There are a ...
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 ...
Repcarlaapepin, Area Sales Manager at Atmel
Hello, I am Carla and I live in San Bernardino, USA. I am working as a bookkeeper in a library ...
Repprishamondel, Quality Assurance Engineer at Bloomberg LP
I am Prisha, a versatile self-starter and a quick learner looking for a position within your company, Netaid. My hobbies ...
RepSilvia Devidson, maintenence engineer at Live Nation
Silvia Devidson working as a mechanical piping estimator performs process piping takeoffs from engineered drawings at various levels of design ...
Repnorahuerta1111, Accountant at ABC TECH SUPPORT
Hey, I'm Nora Huerta, and I'm working as a journalist. And nowadays I am doing part time jobs ...
Replarryehickl, Associate at ABC TECH SUPPORT
I am a blogger in the Geek system operator . As an editor with a strong background in english and hindi ...
Repritahmixon, Analyst at ADP
Hi, I am a physiotherapy to help people handle everyday problems. I also assist peoples who have issues caused by ...
Rephizahula, abc at 8x8
I am Erica and have lived in the US for the last 4 years.I did my degree in the ...
RepGenesisCruz, Integration Software Engineer at NetApp
I am a highly professional and experienced board director with many years of experience leading non-profit as well as for-profit ...
Repannavhedge4, AT&T Customer service email at ABC TECH SUPPORT
Hi everyone, I am from Worcester,USA. I currently work in the Argus Tapes & Records as Scientific illustrator . I love ...
for the second part I think we can do following
- chiragtayal March 05, 2013traverse from left to right: and store the longest,second longest,third longest lengths of zeros and one in an array...if required we can store start and end index of all the lengths.
Then we can compare the arrays and determine the max sub sequence of zeros and ones
Please correct me if I am wrong