Skip to content

Instantly share code, notes, and snippets.

@modestfake
Last active December 29, 2018 00:10
Show Gist options
  • Save modestfake/03a615929d13ef6013a01c211b9dc051 to your computer and use it in GitHub Desktop.
Save modestfake/03a615929d13ef6013a01c211b9dc051 to your computer and use it in GitHub Desktop.
Reverse words in sentences
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