Created
July 12, 2016 08:47
-
-
Save dstyle0210/b24808bdc4f3af09e320bea37d7f47bf to your computer and use it in GitHub Desktop.
[코딩도장] 구글 입사문제 중에서
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 코딩도장 공부 | |
| // 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