Harshal : check for *a*acc*b*cdef*a*ccc*b*cc
will fail for acc*b* Best Regards Ashish Goel "Think positive and find fuel in failure" +919985813081 +919966006652 On Mon, Feb 6, 2012 at 7:42 AM, Harshal <[email protected]> wrote: > > Initialize > i = index of first 'a' > j = index of first 'b' > n = array length. > MinDist = n+1; > > > while(i < n && j < n){ > MinDist = min(MinDist, abs(i-j)) > if(i < j) > i = index of next 'a' > else > j = index of next 'b' > } > > > -- > Best Regards, > Harshal Choudhary. > > -- > You received this message because you are subscribed to the Google Groups > "Algorithm Geeks" group. > To post to this group, send email to [email protected]. > To unsubscribe from this group, send email to > [email protected]. > For more options, visit this group at > http://groups.google.com/group/algogeeks?hl=en. > -- You received this message because you are subscribed to the Google Groups "Algorithm Geeks" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/algogeeks?hl=en.
