Ashik Bhuyanashik17.hashnode.dev·Sep 20, 2023Subsequence Vs Substring Vs SubarraySubstring 👍 A substring is a contiguous(continuous) sequence of characters present within a string. It is a string present inside a string.For instance, the substrings of the string “tree” would be:‘t,’ ‘r,’ ‘e,’ ‘tr,’ ‘tre,’ ‘tree,’ ‘re,’ ‘ree,’ ‘e...subsequence
Subhajit Deysubhajit098.hashnode.dev·Dec 16, 2022How to Print Subsequences of an Array using recursion? 🤨As we all know that Recursion is calling the function itself again and again until the base condition is satisfied. So,in order to make a recursive function we should keep in mind the base condition and the function definition we want to create. Ple...subsequence