From c5e4e8caa50530326eef6f11c267e5390f21740f Mon Sep 17 00:00:00 2001 From: Bradley Small <vc.Bradley.Small@lowes.com> Date: Thu, 24 Oct 2019 14:35:10 -0400 Subject: [PATCH] initial readme --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..013968f --- /dev/null +++ b/README.md @@ -0,0 +1,7 @@ +It's marked as easy. + +This problem was asked by Amazon. + +Run-length encoding is a fast and simple method of encoding strings. The basic idea is to represent repeated successive characters as a single count and character. For example, the string "AAAABBBCCDAA" would be encoded as "4A3B2C1D2A". + +Implement run-length encoding and decoding. You can assume the string to be encoded have no digits and consists solely of alphabetic characters. You can assume the string to be decoded is valid. -- GitLab