Skip to content

Instantly share code, notes, and snippets.

@dstyle0210
Created July 18, 2016 00:38
Show Gist options
  • Select an option

  • Save dstyle0210/37b8c25be76f5a273c153b8f990b4803 to your computer and use it in GitHub Desktop.

Select an option

Save dstyle0210/37b8c25be76f5a273c153b8f990b4803 to your computer and use it in GitHub Desktop.
[코딩도장] 문자열 압축하기
// 코딩도장 공부 : 문자열 압축하기
// http://codingdojang.com/scode/465
var data = "aaabbcccccca";
var str = "";
var num = 1;
var target = "";
data.split("").forEach(function(item){
if(target!=item){
str += (target!="") ? target+""+num : "";
target = item;
num = 1;
}else{
num++;
}
});
console.log(str);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment