서론
오늘도 화이팅😊😊😊
본론
Complete the solution so that it reverses the string passed into it. 'world' => 'dlrow'
완성시키래, 배열을 완전히 거꾸로 하는 함수를 !!
.reversed() 을 사용하자!!😊 여기서 point는 ReversedCollection<String>을 반환한다는 것!
ReversedCollection이란, reverse order안에 있는 elements들의 collection이래.
양방향의 indices를 가지고, reversed() 는 항상 게으르데.
결론으로, 중요한건 String으로 변환을 해주어야해!! 왜?? 우리는 String을 반환해주어야 하니깐, 진짜 reversed collection을 반환하나 볼까? type()를 사용하여 직접 알아볼까?? ㄲㄲㄲㄲ
진짜네, 이제 형변환으로 바꾸자!!
String(str.reversed()) 요렇게 말이죠!!😊😊😊
결론
'Algorithm > CodeWars' 카테고리의 다른 글
Century From Year by CodeWar (0) | 2021.04.07 |
---|---|
Grasshopper - Summation by CodeWar (0) | 2021.04.05 |
String repeat by CodeWar (0) | 2021.04.03 |
Calculate BMI (0) | 2021.04.02 |
Opposite number (0) | 2021.03.31 |