An open API service indexing awesome lists of open source software.

https://github.com/shadow129-sys/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
https://github.com/shadow129-sys/scheduling-problem-algorithm

algorithmic-complexity competitive-programming cpp14 greedy-algorithms

Last synced: 9 months ago
JSON representation

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

Awesome Lists containing this project

README

          

# 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](https://www.youtube.com/channel/UCaO6VoaYJv4kS-TQO_M-N_g) in the [video](https://www.youtube.com/watch?v=3Q_oYDQ2whs&t=2320s)

## Libraries Required :computer:
```c++
#include
#include
#include
#include
```

## Prerequisites :key:
:small_blue_diamond: Basic understanding of algorithmic complexity

:small_blue_diamond: Greedy algorithm

## Understanding The Code :coffee:
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 ❓
:arrow_right_hook: **How to compile and run c++ code?**

**Linux**
```terminal
~$ g++ filename.cpp -o outputFile
~$ ./outputFile
```
**Windows**
```terminal
g++ filename.cpp -o outputFile
outputFile.exe
```

:arrow_right_hook: **g++ command not working**

**Windows**
Install [MinGW](https://sourceforge.net/projects/mingw/) in your pc and add the path of bin folder in MinGW to system variable 'path'.
**Linux**
```terminal
~$ sudo apt-get update
~$ sudo apt-get upgrade
~$ sudo apt install g++
```

then open terminal and check the version of your gcc.
```terminal
gcc --version
```
It will show your gcc version.