Skip to content

Commit

Permalink
HhhHHHhHhhHhHhhhhHhHHhHhhhhHhhhhhhhhHhhhHHHHhHHHHhHHhhHhhHhH
Browse files Browse the repository at this point in the history
  • Loading branch information
Fernsicles committed Dec 12, 2020
1 parent 35a5004 commit 928a75a
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions h.cpp
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
#include <string>
#include <boost/algorithm/string.hpp>
#include <iostream>
#include <cctype>

using namespace std;
int main(int argc, char **argv) {
string input = string(argv[2]);
string output = "";
if(string("e").compare(argv[1]) == 0) {
boost::to_upper(input);
for(int i = 0; input[i] != 0; i++) {
unsigned char x = input[i];
unsigned char x = toupper(input[i]);
x -= 64;
for(int j = 0b1; j <= 0b10000; j <<= 1) {
if(x & j) {
Expand Down

0 comments on commit 928a75a

Please sign in to comment.