Intangles Interview Question

Implement Run-Length Encoding and decoding functions.

Interview Answer

Anonymous

Jul 3, 2025

Used an array to keep track of the count of each character while preserving the order of characters, using the 2 pointers appoach.