Skip to content

SHUKLA-KUSHAGRA/Leetcode_solved

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Leetcode_solved

This repository will contain solutions of Leetcode problems i solve.
Kushagra Shukla Leetcode : @kushagra_2k24

Getting Started

#include<iostream>
using namespace std;
int main()
{
  cout<<"Leetcode solved by KUSHAGRA SHUKLA"<<endl;
  cout<<"Solving problems in C/C++ language"<<endl;
  return 0;
}

C++ STL needed to get started

#include<bits/stdc++.h>
using namespace std;
int main()
{
  vector<int> v;
  stack<int> s;
  queue<int> q;
  map<int,int> m;
  set<int> st;
  cout<<"You need to have a basic idea of these stl to catch the code easily"<<endl;
  return 0;
}

Remarks

  • If you feel this conent is good make sure to give a ⭐ to this repository it will give me a boost to continue the series of solutions.
  • Keep learning have fun.