나는 이렇게 학습한다/Algorithm & SQL
1125. MakeUpperCase
daco2020
2022. 11. 25. 18:11
Write a function which converts the input string to uppercase.
Solution:
String makeUpperCase(String str) => str.toUpperCase();