Python Programming – Longest Consecutive SubsequenceWikitechy EditorApril 4, 2018 5 shares 5 0 0 One Solution is to first sort the array and find the longest subarray with consecutive elements. Time complexity of this solution is O(nLogn). View Post
Java Programming – Longest Consecutive SubsequenceWikitechy EditorApril 4, 2018 One Solution is to first sort the array and find the longest subarray with consecutive elements. Time complexity of this solution is O(nLogn). View Post
C program to check subsequenceWikitechy EditorDecember 21, 2017 15 shares 15 0 0 C program to check subsequence – C Programming – User will input two strings and we find if one of the strings is a subsequence of other. View Post