
Search found 3 matches
- Sun Jul 17, 2005 9:44 pm
- Forum: Volume 1 (100-199)
- Topic: 195 - Anagram
- Replies: 242
- Views: 58162
Thnx
Thnx a lot, chunyi81, i got ACC now 

- Wed Jul 13, 2005 10:42 pm
- Forum: Volume 1 (100-199)
- Topic: 195 - Anagram
- Replies: 242
- Views: 58162
195 - OLE
why OLE?
Code: Select all
#include <iostream>
#include <algorithm>
#include <string>
using namespace std;
bool cmp ( char a, char b ) { return (a|32) == (b|32) ? a >= 'A' && a <= 'Z' : (a|32) < (b|32); }
void main() {
// .... ACC
}
- Sun Jul 10, 2005 6:31 pm
- Forum: Volume 5 (500-599)
- Topic: 579 - Clock Hands
- Replies: 44
- Views: 22598