Remove src

This commit is contained in:
Hazem Krimi
2024-04-26 12:51:07 +01:00
parent e79ab46844
commit 8262f49d85
6 changed files with 0 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
#include <iostream>
#include <random>
#include <ctime>
#include <string>
using namespace std;
string generateRandomLabel() {
random_device rd;
mt19937 gen(rd());
uniform_int_distribution<> dis('A', 'Z');
string label;
for (int i = 0; i < 8; ++i) {
label += static_cast<char>(dis(gen));
}
return label;
}