Uppercase Strings easy
Strings

Write an R function solution(x) that returns the character vector x converted to uppercase.

Example

solution(c("hello", "world"))  →  c("HELLO", "WORLD")
solution.py
14px
📊 Test Results
Run your code to see test results here.