String
No. 616 Add Bold Tag in String
tags: Suffix Tree
Longest Repeated Substring http://www.geeksforgeeks.org/suffix-tree-application-3-longest-repeated-substring/
No. 301 sol
No. 139: Word Break:
canBreak[i] = True if canBreak[j] and (s[j:i] in wordDict) for j < i
Not solved
No. 140: Word Break II: DFS, hashtable saving the previous prune duplicated brunch....
Palindrom
Anagram
No. 242: Valid Anagram: sort; hash-table
No. 49: Group Anagrams: hash-table, hashfunction
Other
Last updated