Skip to content

Latest commit

 

History

History
16 lines (10 loc) · 333 Bytes

exercise.md

File metadata and controls

16 lines (10 loc) · 333 Bytes

Swap Case - HackerRank

Objectives

You are given a string and your task is to swap cases. In other words, convert all lowercase letters to uppercase letters and vice versa.

For Example:

Www.HackerRank.com → wWW.hACKERrANK.COM
Pythonist 2 → pYTHONIST 2

Solution

Click here to view the solution