Majority element
#include <iostream>
using namespace std;
// Majority Element: Find the element appearing more than ⌊n/2⌋ times.
int main() {
cout << "Hello World!";
return 0;
}INFO
#include <iostream>
using namespace std;
// Majority Element: Find the element appearing more than ⌊n/2⌋ times.
int main() {
cout << "Hello World!";
return 0;
}