String Manipulation (Problem 10) - InfyTQ Solution in Python
String Manipulation (Problem 10)
InfyTQ Solution in Python
PROBLEM STATEMENT
Write a Python function which accepts a string and returns a string made of the first 2 and the last 2 characters of the given string.
If the string length is less than 2, return -1.
Note: If the string length is equal to 2, consider the 2 characters to be the first as well as the last two characters.
| Sample Input | Expected Output |
|---|---|
| w3resource | w3ce |
| w3 | w3w3 |
| A | -1 |
SOLUTION
SHARE
If you find this useful, please share with your friends and Community.
CODE TOGETHER..GROW TOGETHER.
CODE TOGETHER..GROW TOGETHER.
Newer Posts
Newer Posts
Older Posts
Older Posts

Comments