Skip to content

Instantly share code, notes, and snippets.

View swayamterode's full-sized avatar
🥷
Slow but determined

Swayam Terode swayamterode

🥷
Slow but determined
View GitHub Profile
@swayamterode
swayamterode / sorting_techniques.cpp
Created June 21, 2024 18:52
Selection Sort, Bubble Sort, Insertion Sort in C++
#include <iostream>
#include <vector>
using namespace std;
void printArray(vector<int> &arr) {
for (int i = 0; i < arr.size(); i++) {
cout << arr[i] << "\t";
}
}