Initial commit for WordsSorting

This commit is contained in:
BackIsBachus
2021-05-05 15:34:09 +02:00
commit d9cd489a0e
11 changed files with 833 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
#pragma once
#include <vector>
#include <string>
using namespace std;
class WordProcessing
{
public:
/*
* brief: Sort and apply the possible unicity option to the words
*/
static void ProcessWords(bool isUnique, vector<string>& ioWords);
};