Can anybody tell me how to implement a program to check a string contains all unique chars ?
Use a HashTable, add the key for each character along with the count of occurrences as the value. Loop through the HashTable keys to see if you encountered a count > 1. If so, output false.