Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add reverse_word_string.go to string_algorithms #6799

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
/// Part of Cosmos by OpenGenus Foundation
/// Receives a string and returns the reverse of it
/// Contributed by: Joao Pedro Campos Silva (joaopedrocampos)

package main

import (
"fmt"
)

// Function to reverse a string
func reverseString(s string) string {
runes := []rune(s)

for i, j := 0, len(runes)-1; i < j; i, j = i+1, j-1 {
runes[i], runes[j] = runes[j], runes[i]
}

return string(runes)
}

func main() {
fmt.Println(reverseString("I know what you did last summer")) // Output: remmus tsal did uoy tahw wonk I
fmt.Println(reverseString("OpenGenus cosmos")) // Output: somsoc suneGnepO
fmt.Println(reverseString("GoLang")) // Output: gnaLoG
fmt.Println(reverseString("12345")) // Output: 54321
}