#include #include "chapter1.hpp" /* Prompt Is Unique: Implement an algorithm to determine if a string has all unique characters. What if you cannot use additional data structures? */ bool IsUnique(const char* s, int len){ int tracker[255]= {}; for(int i=0; i(s[i]); tracker[tracker_index] += 1; if (tracker[tracker_index] > 1){ return false; } } return true; }