0
0
DSA Typescriptprogramming~20 mins

Word Break Problem in DSA Typescript - Practice Problems & Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Word Break Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
Predict Output
intermediate
2:00remaining
Output of Word Break Check for Simple Case
What is the output of this TypeScript code that checks if the string can be segmented into dictionary words?
DSA Typescript
function wordBreak(s: string, wordDict: string[]): boolean {
  const dp: boolean[] = Array(s.length + 1).fill(false);
  dp[0] = true;
  for (let i = 1; i <= s.length; i++) {
    for (let j = 0; j < i; j++) {
      if (dp[j] && wordDict.includes(s.substring(j, i))) {
        dp[i] = true;
        break;
      }
    }
  }
  return dp[s.length];
}

console.log(wordBreak("leetcode", ["leet", "code"]));
Afalse
Btrue
CSyntaxError
DTypeError
Attempts:
2 left
💡 Hint
Think about whether the string "leetcode" can be split into "leet" and "code" from the dictionary.
Predict Output
intermediate
2:00remaining
Output for Word Break with No Possible Segmentation
What is the output of this TypeScript code when the string cannot be segmented into dictionary words?
DSA Typescript
function wordBreak(s: string, wordDict: string[]): boolean {
  const dp: boolean[] = Array(s.length + 1).fill(false);
  dp[0] = true;
  for (let i = 1; i <= s.length; i++) {
    for (let j = 0; j < i; j++) {
      if (dp[j] && wordDict.includes(s.substring(j, i))) {
        dp[i] = true;
        break;
      }
    }
  }
  return dp[s.length];
}

console.log(wordBreak("applepenapple", ["apple", "pen", "pine"]));
Atrue
Bfalse
CReferenceError
DRangeError
Attempts:
2 left
💡 Hint
Check if the string "applepenapple" can be segmented using the dictionary words.
Predict Output
advanced
2:00remaining
Output of Word Break for Overlapping Dictionary Words
What is the output of this TypeScript code when the dictionary contains overlapping words?
DSA Typescript
function wordBreak(s: string, wordDict: string[]): boolean {
  const dp: boolean[] = Array(s.length + 1).fill(false);
  dp[0] = true;
  for (let i = 1; i <= s.length; i++) {
    for (let j = 0; j < i; j++) {
      if (dp[j] && wordDict.includes(s.substring(j, i))) {
        dp[i] = true;
        break;
      }
    }
  }
  return dp[s.length];
}

console.log(wordBreak("catsanddog", ["cat", "cats", "and", "sand", "dog"]));
ASyntaxError
Bfalse
CTypeError
Dtrue
Attempts:
2 left
💡 Hint
Try to segment "catsanddog" using the dictionary words, considering overlapping options.
🔧 Debug
advanced
2:00remaining
Identify the Error in Word Break Implementation
What error will this TypeScript code produce when run?
DSA Typescript
function wordBreak(s: string, wordDict: string[]): boolean {
  const dp: boolean[] = Array(s.length + 1).fill(false);
  dp[0] = true;
  for (let i = 1; i <= s.length; i++) {
    for (let j = 0; j < i; j++) {
      if (dp[j] && wordDict.indexOf(s.substring(j, i)) !== -1) {
        dp[i] = true;
        break;
      }
    }
  }
  return dp[s.length];
}

console.log(wordBreak(null as unknown as string, ["leet", "code"]));
ASyntaxError
BReferenceError: wordBreak is not defined
CTypeError: Cannot read property 'length' of null
DNo error, returns false
Attempts:
2 left
💡 Hint
Check what happens if the input string is null instead of a string.
🚀 Application
expert
3:00remaining
Number of Ways to Segment String Using Word Break Logic
Given the following TypeScript code that counts how many ways the string can be segmented into dictionary words, what is the output?
DSA Typescript
function wordBreakCount(s: string, wordDict: string[]): number {
  const dp: number[] = Array(s.length + 1).fill(0);
  dp[0] = 1;
  for (let i = 1; i <= s.length; i++) {
    for (let j = 0; j < i; j++) {
      if (wordDict.includes(s.substring(j, i))) {
        dp[i] += dp[j];
      }
    }
  }
  return dp[s.length];
}

console.log(wordBreakCount("catsanddog", ["cat", "cats", "and", "sand", "dog"]));
A2
B1
C3
D0
Attempts:
2 left
💡 Hint
Count all possible segmentations of "catsanddog" using the dictionary words.