Skip to content

Instantly share code, notes, and snippets.

View suubh's full-sized avatar
😞
Sad Geek

Shubham Singh suubh

😞
Sad Geek
View GitHub Profile
@suubh
suubh / Invite.yml
Created March 23, 2021 07:57
GitHub Action for Auto Invite in an Organization using Issues and Labels.
on:
issues:
types: [labeled]
jobs:
automate_invite:
runs-on: ubuntu-latest
steps:
- name: Invite on label
uses: vj-abigo/invite-on-label@v1.2
@suubh
suubh / GithubReadme.md
Last active March 27, 2021 07:47
Get all the links for special README without any Fork !

Get your special README.md ideas which will appear on your profile !

Icons -

For LinkedIn :

Shubham LinkdeIN

For Mail :

@suubh
suubh / sorting.cpp
Created December 8, 2021 09:44
Sorting Algorithms
//--------------------------- SELECTION SORT ---------------------------//
#include<iostream>
using namespace std;
void selection(int arr[], int n){
// First objective is to find the INDEX of the min element
for(int i=0;i<n-1;i++){
int min_ele_index = i;
for(int j = i+1;j<n;j++){
if(arr[j] < arr[min_ele_index]){