1.1. Implement an algorithm to determine if a string has all unique characters. What if you cannot use additional data structures? 1) Brute Force (I made this not to use additional data structure) Calculate each item by iterating the string >> result in O(n^2) boolean isUnique(String[] string){ for (int i = 0; i < string.length; i++){ //Since we compute one for i we don't have to start from i ag..