Monday, December 8, 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

How to handle server error of data provider in React-admin?

May 21, 2020 beroza

How to get system properties or environment variables in spring thymeleaf template?

February 27, 2019 beroza

Count the Number of Vowel Strings in Range

May 28, 2023 beroza
Advanced CSS interview questions

Advanced CSS interview questions

May 6, 2019 beroza

Mean of Array After Removing Some Elements

January 10, 2023 beroza
Advanced JavaScript interview questions

Advanced JavaScript interview questions.

November 19, 2019 beroza

Who is listening on a given TCP port on Mac?

September 16, 2021 beroza

In which order static initialisation block and constructor run in java?

September 16, 2019 beroza

What are the differences between IP address 0.0.0.0 and 127.0.0.1?

December 4, 2019 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.