Skip to content

Instantly share code, notes, and snippets.

View czynot's full-sized avatar
✌️
Running from my problems 'til my feet get sore…

Parth Purvesh czynot

✌️
Running from my problems 'til my feet get sore…
View GitHub Profile
@czynot
czynot / train_covid19.ipynb
Last active March 21, 2020 05:45
train_covid19.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@czynot
czynot / train_covid19.ipynb
Created March 21, 2020 09:23
train_covid19.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@czynot
czynot / utkface.ipynb
Created November 19, 2020 05:04
UTKFace.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@czynot
czynot / utkface.ipynb
Created November 19, 2020 05:07
UTKFace.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
#include<stdio.h>
#include<stdlib.h>
struct Node
{
int coeff;
int pow;
struct Node* next;
};
// Insertion sort
// Number is 20000 to 100000, step 20000
// Perform insertion sort
// Output execution time for each
#include<stdio.h>
#include<stdlib.h>
#include<time.h>
void sort(int n)