From c174cb0829e3b1e92c9cf86a8dc0c0f77b95295d Mon Sep 17 00:00:00 2001 From: ditam Date: Sun, 15 Oct 2017 20:21:07 +0200 Subject: add backticks to escape markdown formatting characters --- dynamic-programming.html.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dynamic-programming.html.markdown b/dynamic-programming.html.markdown index 7df367e7..4db8e92e 100644 --- a/dynamic-programming.html.markdown +++ b/dynamic-programming.html.markdown @@ -26,7 +26,7 @@ The Longest Increasing Subsequence problem is to find the longest increasing sub First of all we have to find the value of the longest subsequences(LSi) at every index i with last element of sequence being ai. Then largest LSi would be the longest subsequence in the given sequence. To begin LSi is assigned to be one since ai is element of the sequence(Last element). Then for all `j` such that `j