Data-Structures-and-Algorithms
                                
                                 Data-Structures-and-Algorithms copied to clipboard
                                
                                    Data-Structures-and-Algorithms copied to clipboard
                            
                            
                            
                        Case-sensitive condition missing
https://github.com/FarheenB/Data-Structures-and-Algorithms/blob/8ba5e1e361a123e97963cf6df1e10a3f35c10435/Java/soln-trie-problems/longest-common-prefix-case-sensitive.java#L24-L26
    newNode.val=(char)('a'+index);  // a+26 = {
    newNode.count=newNode.endsHere=0;
    for(int i=0;i<26;i++)    //  it should be 52 instead of 26