* Create .abapgit.xml * Create package.devc.xml * Create package.devc.xml * Create zcl_anagram.clas.xml * Update .abapgit.xml * Add packages * Add classes * Update packages * Update abapGit.xml * Update XML objects * Fix EOF * Update EE * Update EOF * Change starting folder * Add execises * Update .abapgit.xml * Package description * Update xml * Update EOF Co-authored-by: Marc Bernard <marc@mail.marcbernardtools.com>
33 lines
470 B
ABAP
33 lines
470 B
ABAP
CLASS zcl_rle DEFINITION
|
|
PUBLIC
|
|
FINAL
|
|
CREATE PUBLIC .
|
|
|
|
PUBLIC SECTION.
|
|
|
|
METHODS encode IMPORTING input TYPE string
|
|
RETURNING VALUE(result) TYPE string.
|
|
|
|
METHODS decode IMPORTING input TYPE string
|
|
RETURNING VALUE(result) TYPE string.
|
|
|
|
ENDCLASS.
|
|
|
|
|
|
CLASS zcl_rle IMPLEMENTATION.
|
|
|
|
METHOD encode.
|
|
|
|
"Add solution here
|
|
|
|
ENDMETHOD.
|
|
|
|
|
|
METHOD decode.
|
|
|
|
"Add solution here
|
|
|
|
ENDMETHOD.
|
|
|
|
ENDCLASS.
|