Thursday, January 29, 2026
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 center an image vertically and horizontally inside a div?

August 29, 2021 beroza

What is Hadoop? What are the benefits of using Hadoop?

November 26, 2023 beroza

Differences between Preload, Prefetch, and Preconnect?

September 16, 2021 beroza

Write a Program to Find Two Furthest Houses With Different Colors

January 20, 2023 beroza

How to reduce network latency issue in microservices?

October 8, 2023 beroza

Minimum Changes To Make Alternating Binary String

January 11, 2023 beroza

301 Redirect vs Canonical – which one to use?

September 23, 2020 beroza

Should we write a lot of code inside finally block?

June 22, 2023 beroza

What is an arrow function and why use arrow function in JavaScript?

March 18, 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 © 2026 Upokary. All rights reserved.