示例#1
0
// BEGIN CUT HERE
void main( int argc, char* argv[] ) {
    {
        Unique theObject;
        eq(0, theObject.removeDuplicates("banana"),"ban");
    }
    {
        Unique theObject;
        eq(1, theObject.removeDuplicates("aardvark"),"ardvk");
    }
    {
        Unique theObject;
        eq(2, theObject.removeDuplicates("xxxxx"),"x");
    }
    {
        Unique theObject;
        eq(3, theObject.removeDuplicates("topcoder"),"topcder");
    }
}