[gcj] Re: ESAb ATAd question debugging

2020-04-14 Thread Cheung Scott
Thank you very much mate! That is the reason. 在 2020年4月14日星期二 UTC+8上午3:35:11,porker2008写道: > > if (ne > -1) { > System.out.println(ne + 1); > bit = input.nextInt(); > ne_change = a[ne] != bit; > i++; // removing this line > } else { > System.out.println("1"); > bit =

[gcj] Re: ESAb ATAd question debugging

2020-04-13 Thread porker2008
if (ne > -1) { System.out.println(ne + 1); bit = input.nextInt(); ne_change = a[ne] != bit; i++; // removing this line } else { System.out.println("1"); bit = input.nextInt(); } -- You received this message because you are subscribed to the Google Groups "Google Code

[gcj] Re: ESAb ATAd question debugging

2020-04-13 Thread Cheung Scott
anyone could help please? 在 2020年4月14日星期二 UTC+8上午12:08:11,Cheung Scott写道: > > Hi all, > > I have written the solution for ESAb ATAd question, and it works in local > when I manually tested it. But it keep throws RE when I submitted it. > I have thought hard and still have no idea why it fails.