Skip to content

feat: Added Word Break Problem in Backtracking #1738

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
feat:added Word Break problem in backtracking
  • Loading branch information
Akshat-Raii committed Oct 19, 2024
commit 8da81b90945e6c3af9d08db0b96a399b9b59f773
8 changes: 8 additions & 0 deletions Backtracking/WordBreak.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
/**
* Determines if the input string can be segmented into words from the provided dictionary.
* @param {string} s - The input string to be segmented.
* @param {string[]} wordDict - An array of valid words for segmentation.
* @returns {boolean} True if the string can be segmented into valid words, false otherwise.
* @see https://www.geeksforgeeks.org/word-break-problem-using-backtracking/
*/

export class WordBreakSolution {
// Function to determine if the input string 's' can be segmented into words from the 'wordDict'
wordBreak(s, wordDict) {