Last active
December 29, 2018 00:10
-
-
Save modestfake/03a615929d13ef6013a01c211b9dc051 to your computer and use it in GitHub Desktop.
Reverse words in sentences
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const str = 'I love Tamagochi' | |
const input = str.split('') | |
function reverseWords (input) { | |
const length = input.length | |
let offset = 0 | |
let lastSpaceIndex = 0 | |
do { | |
lastSpaceIndex = input.indexOf(' ', offset) | |
if (lastSpaceIndex === -1) { | |
lastSpaceIndex = length | |
} | |
for (let i = offset, j = lastSpaceIndex - 1; i < j; i++, j--) { | |
let temp = input[i] | |
input[i] = input[j] | |
input[j] = temp | |
} | |
offset = lastSpaceIndex + 1 | |
} while (lastSpaceIndex !== length) | |
return input | |
} | |
const result = reverseWords(input) | |
console.log(result) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment