diff --git a/challenge-2/submissions/macborowy/solution-template.go b/challenge-2/submissions/macborowy/solution-template.go new file mode 100644 index 00000000..0f0d8ac4 --- /dev/null +++ b/challenge-2/submissions/macborowy/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 { + l := len(s) + a := make([]byte, l, l) + + for i := len(s) - 1; i >= 0; i-- { + a[l-1-i] = s[i] + } + + return string(a) +} \ No newline at end of file