Interview Query

String Shift

Start Timer

0:00:00

Upvote
23
Downvote
Save question
Mark as completed
View comments (36)
Next question

Given two strings A and B, write a function can_shift to return whether or not A can be shifted some number of places to get B.

Example:

Input:

A = 'abcde'
B = 'cdeab'
can_shift(A, B) == True

A = 'abc'
B = 'acb'
can_shift(A, B) == False
.
.
.
.
.


Comments

Loading comments