Reverse Strings (C#)
Започнах материала от Advanced, но още на първата задача не знам защо ми гърми judge 80/100 :)
Lab: Stacks and Queues
Problems for exercises and homework for the "CSharp Advanced" course @ Software University.
You can check your solutions here: https://judge.softuni.bg/Contests/1445/Stacks-and-Queues-Lab
- Working with Stacks
1.Reverse Strings
Write program that:
- Reads an input string
- Reverses it using a Stack<T>
- Prints the result back at the terminal
Examples
Input |
Output |
I Love C# |
#C evoL I |
Stacks and Queues |
seueuQ dna skcatS |
Hints
- Use a Stack<string>
- Use the methods Push(), Pop()
Да, мерси, определено е добро и просто решение, аз малко съм го усложнил моето :D
Моля, няма проблем, радвам се да помогна.