Problem · String

No Pairs Allowed

Learn this problem
EasyPalantirINTERNOA

Problem statement

For each word in a list of words, if any two adjacent characters are equal, change one of them. Determine the minimum number of substitutions so the final string contains no adjacent equal characters.

Function

minimalOperations(words: String[]) → int[]

Complete the function minimalOperations in the editor below.

minimalOperations has the following parameter(s):

  1. string words[n]: an array of strings

Returns

int[n]: each element is the minimum substitutions for words[x]

Examples

Example 1

words = ["add", "boook", "break"]return = [1, 1, 0]
1. add: change one d (1 change) 2. boook: change the middle o (1 change) 3. break: no changes are necessary (0 changes) The return array is [1, 1, 0]

Constraints

1 ≤ n ≤ 100
2 ≤ length of words[x] ≤ 10^5
Each character of words[x] is in the range ascii[a-z]

More Palantir problems

drafts saved locally
public int[] minimalOperations(String[] words) {
  // write your code here
}
words["add", "boook", "break"]
expected[1, 1, 0]
checking account