ENG  RUSTimus Online Judge
Online Judge
Problems
Authors
Online contests
About Online Judge
Frequently asked questions
Site news
Webboard
Links
Problem set
Submit solution
Judge status
Guide
Register
Update your info
Authors ranklist
Current contest
Scheduled contests
Past contests
Rules
back to board

Discussion of Problem 1423. String Tale

Test 8
Posted by Marginean Ciprian 11 Jul 2011 19:40
What I corrected in my program to pass test #8 was the following:
characters in the strings have ascii codes in [33, 255].
If you use something like c >= 33, a character with ascii code 200 will evaluate negative and the inequality will be false.
Re: Test 8
Posted by Lucian Ilea 30 Jul 2011 16:04
You are right, Ciprian, thanks.
On the other hand... (int)c disappointed me. :)