Skip to content

Instantly share code, notes, and snippets.

View alexa984's full-sized avatar
🐝

Aleksandra Yovkova alexa984

🐝
View GitHub Profile
@alexa984
alexa984 / task3.cpp
Created February 18, 2019 00:17
python-application-task_3
#include <iostream>
#include <vector>
#include <unordered_map>
#include<unordered_set>
using namespace std;
void read_command(unordered_map<char, pair<int, int>>&, unordered_set<char>&);
int configurations(vector<vector<char>>&, int, int, unordered_map<char, pair<int, int>>&, unordered_set<char>&);
int main()
@alexa984
alexa984 / task_1.cpp
Last active May 15, 2019 12:25
Programming-101-Python-2019-application-tasks
#include"task_1.h"
int main()
{
unordered_map<string, int> inputs;
string line;
while (getline(cin, line))
{
if (line.empty())break;
else
{