Initial commit for WordsSorting
This commit is contained in:
15
WordsSorting/WordProcessing.h
Normal file
15
WordsSorting/WordProcessing.h
Normal 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);
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user