Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 540093
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T10:12:16+00:00 2026-05-13T10:12:16+00:00

Given a string of characters as input, without using regular expression or pattern matching,

  • 0

Given a string of characters as input, without using regular expression or pattern matching, how to get the output, if the characters matches aaa should output 1 and if the characters matches aBa should output 2. (Note: Should not re-process characters so as to output both “1” and “2” when processing the same input)

So for example:

given ‘aaBaBaaaBaaa’ it should output 211

given ‘aaaBaBaaaaBBaBaBa’ it should output 1212

Thanks in advance.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-13T10:12:16+00:00Added an answer on May 13, 2026 at 10:12 am

    without using regular expression or pattern matching

    #input = 'aaBaBaaaBaaa'
    input = 'aaaBaBaaaaBBaBaBa'
    codes = {'aaa' => 1, 'aBa' => 2}
    patterns = codes.keys
    output = []
    
    current = 0
    length = input.length
    
    while current <= length - 1
        is_find = false
        patterns.each do|pattern|
            len = pattern.length
            if input[current, len] == pattern
                output << codes[pattern]
                current += len
                is_find = true
                break
            end
        end
    
        current += 1 if !is_find
    end
    
    p output
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Given a string S of length N find longest substring without repeating characters. Example:
Here is the problem: Remove specified characters from a given string. Input: The string
Given an input string (such as D4C3B2A1) I want to sort the alphabet characters,
I'm in need to modify a given string to contain only alpha numerical characters,
i need to check existing of Character (*,&,$) in Given String using python command
Given a set of strings (large set), and an input string, you need to
The task is to get a user to input a password then, using recursion,
The task I was trying to accomplish was that given an input pattern, e.g.
Given a list L of n character strings, and an input character string S,
Suppose you are given an input string: my name is vikas Suggest an algorithm

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.