Search This Blog
HackerRank Solutions provides solutions to all problems like Algorithms, Data Structures, C, C++, Python, Java, Interview Preparation Kit in Hackerrank
Featured
- Get link
- X
- Other Apps
Java Substring in java hackerrank solution
Given a string, S , and two indices, Start and end , print a substring consisting of all characters in the inclusive range from Start to end – 1 . You’ll find the String class’ substring method helpful in completing this challenge.
Input Format
The first line contains a single string denoting .
The second line contains two space-separated integers denoting the respective values Start of and end .
Constraints
- String consists of English alphabetic letters (i.e.[a – z, A – Z], ) only.
Output Format
Print the substring in the inclusive range from Start to end – 1.
Sample Input
Helloworld
3 7
Sample Output
lowo
Explanation
In the diagram below, the substring is highlighted in green:

Solution:-
import java.io.*;
import java.util.*;
import java.text.*;
import java.math.*;
import java.util.regex.*;
public class Solution {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
String str = scan.next();
int start = scan.nextInt();
int end = scan.nextInt();
scan.close();
System.out.println(str.substring(start, end));
}
}
- Get link
- X
- Other Apps
Popular Posts
say hello world with C++ - Solution in Hacker Rank - hackerranksolutions8
- Get link
- X
- Other Apps
Comments
Post a Comment