Coding Preps - Arrays & Strings
Arrays & Strings Is Unique Implement an algo. to determine if a string has all unique characters. What if you cannot use additional data structures ? Is given string ASCII or UNICODE, because if UNICODE will be there then we need to increase the array size. Sorting & then find continous elements Time Complexity - O(NlogN) Space Complexity - O(N) Comparing each char....