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
- Host: GitHub
- URL: https://github.com/shadow129-sys/scheduling-problem-algorithm
- Owner: Shadow129-sys
- Created: 2021-02-19T11:26:34.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2021-03-25T23:18:13.000Z (almost 5 years ago)
- Last Synced: 2025-02-16T09:20:49.570Z (11 months ago)
- Topics: algorithmic-complexity, competitive-programming, cpp14, greedy-algorithms
- Language: C++
- Homepage:
- Size: 32.2 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.