Skip to content

Instantly share code, notes, and snippets.

View ikasumiwt's full-sized avatar
🐢
slowly

yusuke Kato ikasumiwt

🐢
slowly
  • tokyo,Japan
View GitHub Profile
@ikasumiwt
ikasumiwt / codeiq_heiho
Last active September 16, 2015 15:45
codeiqの平方数で表す平方数のやつ(速度向上)
process.stdin.resume();
process.stdin.setEncoding( 'utf8' );
//4平方数判定用判定用
process.stdin.on( 'data', function ( arg ) {
var num = parseInt( arg );
var arr = [];