Skip to content

Make Selenium Easy

And Keep It That Way

  • Home
  • Share
  • Toggle search form

#1. LeetCode| Java 11 | String Programs | Easy | Sorting the Sentence

Posted on 02/19/2025 By admin

https://leetcode.com/problems/sorting-the-sentence/description/

  1. Get all words from the given sentence.
  2. We will be required a data structure to store the words at their correct position. We can use an Array or Array List.
  3. Extract the index value from each word and use this index value to insert the word into the data structure.
  4. Join the words to form a sentence.
package strings.easy; // https://leetcode.com/problems/sorting-the-sentence/ import java.util.ArrayList;
import java.util.List; public class SortingTheSentence { // Using Array public static String sortSentence(String sentence) { // Splt sentence to get words String[] words = sentence.split(" "); // Create an array of same length as words count String[] wordsWithCorrectPosition = new String[words.length]; // Iterate word by word for(String word : words) { // Extract last char from word int index = Character.getNumericValue(word.charAt(word.length() - 1)); // Insert word at its correct position in array wordsWithCorrectPosition[index - 1] = word.substring(0, word.length()-1); } // Join all words of array with whitespace as delimiter return String.join(" ", wordsWithCorrectPosition); } // Using ArrayList public static String sortSentenceWithArrayList(String sentence) { // Splt sentence to get words String[] words = sentence.split(" "); // Create a new ArrayList from above array ArrayList wordsList = new ArrayList(List.of(words)); // Iterate word by word for(String word : words) { // Extract last char from word int index = Character.getNumericValue(word.charAt(word.length() - 1)); // Replace word at its correct position in ArrayList wordsList.set(index - 1, word.substring(0, word.length()-1)); } // Join all words of array with whitespace as delimiter return String.join(" ", wordsList); } public static void main(String[] args) { System.out.println(sortSentence("is2 sentence4 This1 a3")); System.out.println(sortSentence("Myself2 Me1 I4 and3")); System.out.println(sortSentenceWithArrayList("is2 sentence4 This1 a3")); System.out.println(sortSentenceWithArrayList("Myself2 Me1 I4 and3")); }
}
This is a sentence
Me Myself and I
This is a sentence
Me Myself and I

https://github.com/amod-mahajan/LeetcodeSolvedByAmod

Uncategorized

Post navigation

Previous Post: Postman Tutorial Part 44 – Data Driven Testing in Postman Using CSV File
Next Post: #1. Difference Between List And Set In Java

Related Posts

REST Assured Tutorial 52 – ResponseSpecification – Specify how the expected response must look like Uncategorized
Make Selenium Easy – Page 29 Uncategorized
image – Make Selenium Easy Uncategorized
testng Uncategorized
Amod Mahajan, Author at Make Selenium Easy – Page 3 of 51 Uncategorized
Postman Tutorial Part 45 – Data Driven Testing in Postman Using JSON File Uncategorized

Recent Posts

  • Getting Started with Selenium 4: What Is New and How to Upgrade from Selenium 3
  • Manual Testing
  • Baby Steps To Become Efficient Selenium-Java Automation Tester
  • Features of Selenium 4.0.0 Release – Java Binding
  • Part 1: Handling Drop-down Created Using SELECT Tag In Selenium

Recent Comments

No comments to show.

Archives

  • April 2026
  • April 2025
  • March 2025
  • February 2025
  • January 2025
  • December 2024
  • November 2024
  • October 2024
  • September 2024
  • August 2024
  • April 2024
  • March 2024
  • February 2024
  • December 2023
  • October 2023
  • August 2023
  • November 2022
  • September 2022
  • August 2022
  • July 2022
  • May 2022
  • March 2022
  • October 2021
  • April 2021
  • March 2021
  • January 2021
  • December 2020
  • October 2020
  • September 2020
  • August 2020
  • June 2020
  • May 2020
  • April 2020
  • March 2020
  • February 2020
  • January 2020
  • December 2019
  • November 2019
  • October 2019
  • September 2019
  • August 2019
  • May 2019
  • December 2018
  • November 2018
  • October 2018
  • September 2018
  • August 2018
  • July 2018
  • January 2018

Categories

  • Getting Started
  • Uncategorized

Copyright © 2026 Make Selenium Easy.

Powered by PressBook Masonry Dark