Download Reference Manual
The Developer's Library for D
About Wiki Forums Source Search Contact

Changes between Version 3 and Version 4 of PythonChallenge2Native

Show
Ignore:
Author:
gim (IP: 83.29.218.119)
Timestamp:
07/25/07 11:49:59 (17 years ago)
Comment:

small fix

Legend:

Unmodified
Added
Removed
Modified
  • PythonChallenge2Native

    v3 v4  
    1414                quantity["" ~ letter] += 1; 
    1515        foreach (char letter; text) 
    16                 if (quantity[letter] == 1) 
     16                if (quantity[""~letter] == 1) 
    1717                        Stdout.print(key); 
    1818        Stdout.flush();