Why are indexes not created on all columns and all combinations in a row?
Tech Support / L1-L3
157
0
Principal
172
In what cases are indexes appropriate?
Principal
168
Difference between a process and a thread.
Principal
167
What types of non-relational databases exist and for what tasks are they used? How do they differ from relational databases?
Principal
159
How to fight race conditions?
Principal
154
What is a hash table?
Principal
139
/** * Repeating characters * * Write a function that takes a string as input and returns * for each unique character the maximum number of its consecutive repetitions. * * Input: aaffbaaaaffc * Output: a:4 b:1 f:2 c:1 * * Input: bbbbbb * Output: b:6 * * Input: abc * Output: a:1 b:1 c:1 * * Input: aabbcc * Output: a:2 b:2 c:2 * * Input: aaabbbccc * Output: a:3 b:3 c:3 * * Input: a * Output: a:1 * * Input: "" * Output: */
Principal
136