Skip to content

This is the solution of a Google Interview Question asked in a video (Google Coding Interview With A College Student) in Clement Mihailescu's channel

Notifications You must be signed in to change notification settings

Shadow129-sys/scheduling-problem-algorithm

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 

Repository files navigation

scheduling-problem-algorithm

This is the solution of a Google Interview Question asked in a video (Google Coding Interview With A College Student) in Clement Mihailescu's channel

Main Video 📹

The actual problem statement for this algorithm was asked by Clement Mihailescu in his youtube channel link in the video

Libraries Required 💻

#include <iostream>
#include <string>
#include <vector>
#include <math.h>

Prerequisites 🔑

🔹 Basic understanding of algorithmic complexity
🔹 Greedy algorithm

Understanding The Code ☕

Please read the code carefully everything is written in the comments, if you still have difficulty understanding the code then dry run the code hopefully it will make the concept clear for you.

FAQ ❓

↪️ How to compile and run c++ code?

Linux

~$ g++ filename.cpp -o outputFile
~$ ./outputFile

Windows

g++ filename.cpp -o outputFile
outputFile.exe

↪️ g++ command not working

Windows Install MinGW in your pc and add the path of bin folder in MinGW to system variable 'path'. Linux

~$ sudo apt-get update
~$ sudo apt-get upgrade
~$ sudo apt install g++

then open terminal and check the version of your gcc.

gcc --version

It will show your gcc version.

About

This is the solution of a Google Interview Question asked in a video (Google Coding Interview With A College Student) in Clement Mihailescu's channel

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages