Skip to content

Instantly share code, notes, and snippets.

View gouravbarkle's full-sized avatar
🏠
Working from home

Gourav Barkle gouravbarkle

🏠
Working from home
  • Axtria
  • Tiruchirappalli
View GitHub Profile
#include<bits/stdc++.h>
using namespace std;
void BubbleSort(vector<int> &v)
{
int len = v.size();
for(int k=0;k<len; k++)
{
bool flag = true;
for(int i=0;i<len-1; i++)
{