Q10. Greedy10
Complexity of checking whether “hello” can be made after deleting some characters of a given string. Find min Complexity and best Algorithm. Size of hello =5 Size of given String =15
O(5) greedy
O(15) DP
O(5 log 15) geedy
O(15) greedy