Sunday, December 7, 2025
Latest:
  • Wichtige wörter für B1 prüfung
  • What are the main differences between ApplicationContext and BeanFactory?
  • German B1 Word list
  • How does Lazy annotation work in Spring?
  • How Spring framework resolves circular dependencies?
Upokary

Upokary

Quality information

  • Health
  • Life
  • Fashion
  • Food
  • Code
  • English
  • বাংলা
Technology 

Find the segmented input string into the words of a given dictionary.

Published: February 10, 2022Last updated: February 10, 2022
const findSegment = (dictionary, input) => {
    const result = []
    for(let i = 0; i < input.length; i++) {
        for(let j = i + 1; j <= input.length; j++) {
            const segment = input.slice(i, j);
            if(dictionary.indexOf(segment) > -1) {
                result.push(segment);
            }
        }
    }
    return result
};
const dictionary = ['apple', 'pear', 'pier', 'pie'];
const input = 'applepie';
console.log(findSegment(dictionary, input));

You May Also Like

Uncaught TypeError: Cannot read property ‘x’ of undefined

May 17, 2019 beroza

Use cases of Sets in JavaScript

September 19, 2021 beroza

Client with the currently selected authenticator does not support any combination of challenges that will satisfy the CA

June 11, 2019 beroza

java.lang.IllegalStateException: Failed to load ApplicationContext

November 28, 2019 beroza

Write a program to find increasing decreasing string

June 7, 2022 beroza

Inheritance in JavaScript

August 29, 2021 beroza

What are the differences between properties and attributes in JavaScript?

August 31, 2021 beroza

Job for apache2.service failed. See “systemctl status apache2.service” and “journalctl -xe” for details.

May 24, 2020 beroza

What is machine learning? What are different types of machine leanring methods?

July 12, 2020 beroza

Why Upokary?

Upokary.com is a useful application in everyday life. It provides very handy information regarding every aspect of life. Each and every tip of upokary.com is meant to make life better.

Upokary tools

  • Youtube thumbnail
  • Youtube video downloader

Useful Links

  • Handy code
  • Technology
  • People
  • Programming
  • Quote
  • Travel
  • WordPress
  • IELTS
  • Kids

Pages

  • Sitemap
  • Privacy policy
  • About us
  • Contact us

Support

For any kind of query or question please drop a message in the following email: upokary@gmail.com
Copyright © 2025 Upokary. All rights reserved.