16 lines
248 B
C++
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);
|
|
};
|
|
|