reverse-string, switch solution files (#19)

This commit is contained in:
Lars Hvam
2021-11-26 15:41:07 +01:00
committed by GitHub
parent 59b40b201b
commit 6e69643de8
2 changed files with 5 additions and 5 deletions

View File

@@ -10,8 +10,7 @@ ENDCLASS.
CLASS zcl_reverse_string IMPLEMENTATION.
METHOD reverse_string.
" Please complete the implementation of the reverse_string method
result = input.
result = reverse( input ).
ENDMETHOD.
ENDCLASS.
ENDCLASS.

View File

@@ -10,7 +10,8 @@ ENDCLASS.
CLASS zcl_reverse_string IMPLEMENTATION.
METHOD reverse_string.
result = reverse( input ).
" Please complete the implementation of the reverse_string method
result = input.
ENDMETHOD.
ENDCLASS.
ENDCLASS.