Reverse and Capitalize

Published by Matt in

Create a function that takes a string of lowercase characters and returns that string reversed and in upper case.

Examples

reverse_capitalize("abc") ➞ "CBA"

reverse_capitalize("hellothere") ➞ "EREHTOLLEH"

reverse_capitalize("input") ➞ "TUPNI"

Notes

N/A

Watch a quick demo on how Edabit works.