Implement run-length encoding to compress a string by replacing consecutive characters with the character followed by its count. If the compressed string is not shorter than the original, return the original string.

This technique is useful for reducing storage in custom objects, optimizing API payloads, or implementing custom data compression in Salesforce.

Examples:

Input: input = "aaa" Output: "a3" Explanation: Three consecutive 'a' characters compress to 'a3' Input: input = "abc" Output: "abc" Explanation: No consecutive characters, so compression does not help Input: input = "aaabbc" Output: "a3b2c1" Explanation: 'aaa' becomes 'a3', 'bb' becomes 'b2', 'c' becomes 'c1' Input: input = "" Output: "" Explanation: Empty string returns empty string
Apex Code Editor

Welcome to Lightning Challenge!

Create an Account

Sign up to track your progress, earn points, and compete with others. Your solutions will be saved automatically.

Create account

How It Works

  • • Write your solution in the code editor
  • • Connect your Salesforce org to test
  • • Submit to check if your solution passes
  • • Use hints if you get stuck

Contest Alert

🏆 #CodeEveryDay Jan 2026

Contest runs January 1 - 31. Complete challenges to climb the leaderboard!

Points are calculated for challenges completed during the contest period.