Skip to content

Commit 6e5a308

Browse files
committed
chore: updated
1 parent 2dc6461 commit 6e5a308

File tree

1 file changed

+16
-5
lines changed

1 file changed

+16
-5
lines changed

‎README.md

+16-5
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,7 @@
111111
- [Binary Search Concept](#binary-search-concept)
112112
- [Binary Search Basic Problems](#binary-search-basic-problems)
113113
- [Binary Search Advanced Questions](#binary-search-advanced-questions)
114+
- [Greedy Algorithm](#greedy-algorithm)
114115
- [References](#references)
115116

116117
> Coding interview question answers in JavaScript for Facebook, Amazon, Google, Microsoft or any company.
@@ -1217,14 +1218,24 @@ Next you have to solve some basic binary search problems.
12171218

12181219
### Binary Search Advanced Questions
12191220

1220-
Below problems are lying under optimization problems. Just watch Book Allocation and Aggressive Cows videos to understand optimization logic. Once you understood them after that for rest problems you need to apply same logic. Every iteration you reduce the search space by either maximizing or minimizing the solution.
1221+
Below problems are lying under optimization problems. Just watch `Book Allocation` and `Aggressive Cows` videos (links are below) to understand optimization logic. Once you understood them after that for rest problems you need to apply same logic. Every iteration you reduce the search space by either maximizing or minimizing the solution.
12211222

12221223
- [Book Allocation](https://www.youtube.com/watch?v=Ss9ta1zmiZo&t=1335s)
12231224
- [Aggressive Cows](https://www.youtube.com/watch?v=TC6snf6KPdE)
1224-
- ROTI (SPOJ)
1225-
- Painter's Partition
1226-
- EKO (SPOJ)
1227-
- PARATA (SPOJ)
1225+
- [Painter's Partition](https://www.geeksforgeeks.org/painters-partition-problem/)
1226+
- [EKO (SPOJ)](https://www.spoj.com/problems/EKO/)
1227+
- [PARATA - Roti (SPOJ)](https://www.spoj.com/problems/PRATA/)
1228+
1229+
1230+
1231+
## Greedy Algorithm
1232+
1233+
It is useful for optimization problem.
1234+
1235+
- Watch [these videos](https://www.youtube.com/watch?v=HzeK7g8cD0Y&list=PLqM7alHXFySESatj68JKWHRVhoJ1BxtLW&t=0s) to learn greedy algorithm
1236+
1237+
1238+
12281239

12291240
## References
12301241

0 commit comments

Comments
 (0)