Files
WordsSortingCpp/WordsSorting/WordProcessing.h
2021-05-05 15:34:09 +02:00

16 lines
248 B
C++

#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);
};