From 1432849f2b9979c33062efe6a5ce0259fe2200df Mon Sep 17 00:00:00 2001 From: "go-interview-practice-bot[bot]" <230190823+go-interview-practice-bot[bot]@users.noreply.github.com> Date: Fri, 24 Oct 2025 12:34:50 +0000 Subject: [PATCH] Add solution for Challenge 2 --- .../submissions/eksly/solution-template.go | 33 +++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 challenge-2/submissions/eksly/solution-template.go diff --git a/challenge-2/submissions/eksly/solution-template.go b/challenge-2/submissions/eksly/solution-template.go new file mode 100644 index 00000000..eae2209f --- /dev/null +++ b/challenge-2/submissions/eksly/solution-template.go @@ -0,0 +1,33 @@ +package main + +import ( + "bufio" + "fmt" + "os" +) + +func main() { + // Read input from standard input + scanner := bufio.NewScanner(os.Stdin) + if scanner.Scan() { + input := scanner.Text() + + // Call the ReverseString function + output := ReverseString(input) + + // Print the result + fmt.Println(output) + } +} + +// ReverseString returns the reversed string of s. +func ReverseString(s string) string { + var res []rune + runes := []rune(s) + + for i := len(runes) -1; i >= 0; i-- { + res = append(res, runes[i]) + } + + return string(res) +}