#290. frontAgain
frontAgain
Background
Description
Given a string, return true if the first 2 chars in the string also appear at the end of the string, such as with "edited".
Format
Input
Output
Samples
edited
true
edit
false
ed
true
Limitation
1s, 1024KiB for each test case.