Skip to content
ADevGuide
Go back

Reverse Words in a String III – LeetCode Java 8 Solution

Reverse Words in a String III – LeetCode Java 8 Solution

Today we will be solving the Leetcode question “Reverse Words in a String III” from the easy category.

Problem Statement

Given a string s, reverse the order of characters in each word within a sentence while still preserving whitespace and initial word order.

Explanation

Input:

s = “Let’s take LeetCode contest”

Output:

“s’teL ekat edoCteeL tsetnoc”

Characters of every word is reversed.

Constraints

Maharatna and Navratna Companies in India 2020

Test Cases

Test Case 1

Input:

s = “God Ding”

Output:

“doG gniD”

Solution

https://leetcode.com/problems/reverse-words-in-a-string-iii/


Share this post on:

Previous Post
Robot Return to Origin – LeetCode Simple Java Solution
Next Post
Merge Strings Alternately – Leetcode Java Solution