• Courses
  • Tutorials
  • Jobs
  • Practice
  • Contests
March 07, 2024 |1.3K Views
PROBLEM OF THE DAY : 06/03/2024 | Search Pattern (Rabin-Karp Algorithm)
Description
Discussion

Welcome to the daily solving of our PROBLEM OF THE DAY with Yash Dwivedi. We will discuss the entire problem step-by-step and work towards developing an optimized solution. This will not only help you brush up on your concepts of Strings but also build up problem-solving skills.

In this problem, we are given two strings, one is a text string and other is a pattern string. The task is to print the indexes of all the occurences of pattern string in the text string. For printing, Starting Index of a string should be taken as 1. The strings will only contain lowercase English alphabets ('a' to 'z').

Example :

Input: 
text = "birthdayboy"
pattern = "birth"
Output: 
[1]

Explanation: 
The string "birth" occurs at index 1 in text.

Give the problem a try before going through the video. All the best!!!
Problem Link: https://www.geeksforgeeks.org/problems/search-pattern-rabin-karp-algorithm--141631/1

Read More