Skip to content

Instantly share code, notes, and snippets.

View ahmedtalaat327's full-sized avatar
Magic.

Ahmed Talaat ahmedtalaat327

Magic.
View GitHub Profile
@ahmedtalaat327
ahmedtalaat327 / DelgationHistory.cs
Created March 7, 2022 01:06
Explanation for delgation and lamda expression.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DelegatesTest
{
class Program
{
@ahmedtalaat327
ahmedtalaat327 / Removing_duplicates_in_vector_of_strings.hpp
Created December 15, 2021 14:57
Removing duplicates in a vector of strings.
// Online C++ compiler to run C++ program online
#include <iostream>
#include <string>
#include <vector>
#include <set>
using namespace std;
class QueueHandler{
public:
QueueHandler(vector<string> coming){
_in=coming;