You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,8 +10,12 @@ The open source community has helped me a lot during my interview preparations a
10
10
11
11
## :file_folder: Structure of the repository
12
12
13
+
14
+
As of now, the repository contains [**Data Structures**](data_structures), [**Algorithms**](algorithms) and [**bookmarks**](bookmarks) are the main directories.
15
+
13
16
As of now, the repository contains 3 main directories: **[Data Structures](data_structures)**, **[Algorithms](algorithms)** and **[Bookmarks](bookmarks)**.
14
17
18
+
15
19
### Data Structures
16
20
17
21
Contains all data structure questions categorised into sub-directories like stack, queue, etc according to their type.
Given a string consisting of English alphabets, the task is to count the alphabets in the longest palindromic subsequence.
4
+
5
+
For example :
6
+
Input: str = "BBABCBCAB"
7
+
Output: 7
8
+
"BABCBAB" is the longest palindromic subseuqnce in it. "BBBBB"" and "BBCBB" are also palindromic subsequences of the given sequence, but not the longest ones.
0 commit comments