Rating:
## Challenge
We get only 62 characters to convert the letters in a string into alternating upper and lower case:
```
"Hello World! Hallo Welt!"
```
becomes
```
"HeLlO wOrLd! HaLlO wElT!"
```
## Solution
Using a similar strategy to perl golf, we had a legit 63 character solution:
```php