Skip to content

Instantly share code, notes, and snippets.

View kaushik23arun's full-sized avatar

Arun Kaushik kaushik23arun

View GitHub Profile
from tkinter import *
from tkinter import messagebox
from collections import deque, namedtuple
from PIL import Image,ImageTk
window = Tk()
window.geometry("700x1080")
window.title("LPU NAVIGATOR")
inf = float('inf')
@kaushik23arun
kaushik23arun / arun.c
Last active March 30, 2020 07:08
Round Robin
#include <stdio.h>
#include <stdlib.h>
struct query
{
int id;
int arrival_time;
int brust_time;