diff --git a/global.hpp b/global.hpp index e44e9f4..1e4c8ae 100644 --- a/global.hpp +++ b/global.hpp @@ -2,7 +2,6 @@ #include #include #include -#include using std::vector; using std::string; diff --git a/main.cpp b/main.cpp index 1576aec..4338b66 100644 --- a/main.cpp +++ b/main.cpp @@ -18,7 +18,7 @@ int main(int argc, char* argv[]) { int N = stoi(get_input("-n", args, "Length of sequence", "5")); int M = stoi(get_input("-m", args, "Number of colors", "8")); string player = get_input("-p", args, string("Who plays [")+HUMAN+"/"+BOT+"]", "bot"); - string gen = player == HUMAN ? RANDOM : get_input("-g", args, "Who generates the seque", RANDOM); + string gen = player == HUMAN ? RANDOM : get_input("-g", args, "Who generates the sequence", RANDOM); bool human_player = player == HUMAN; // Generate the sequence