
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Index Into an Infinite String in Python
Suppose we have a string s and two integers i and j (i < j). Now suppose p is an infinite string of s repeating forever. We have to find the substring of p from indexes [i, j).
So, if the input is like s = "programmer", i = 4, j = 8, then the output will be "ramm".
To solve this, we will follow these steps −
- p:= blank string
- for t in range i to j, do
- p := p concatenate a character from s at index (t mod size of s)
- return p
Let us see the following implementation to get better understanding −
Example
class Solution: def solve(self, s, i, j): p="" for t in range(i,j): p+=s[t%len(s)] return p ob = Solution() s = "programmer" i = 4 j = 8 print(ob.solve(s, i, j))
Input
"programmer", 4, 8
Output
ramm
Advertisements