Skip to content

Instantly share code, notes, and snippets.

@dstyle0210
Created July 12, 2016 08:47
Show Gist options
  • Select an option

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

Select an option

Save dstyle0210/b24808bdc4f3af09e320bea37d7f47bf to your computer and use it in GitHub Desktop.
[코딩도장] 구글 입사문제 중에서
// 코딩도장 공부
// http://codingdojang.com/scode/393
var samText = "";
for(i=1;i<10000;i++){
samText += i+"";
};
var total = (samText.match(/8/g)).length;
console.log(total);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment