이상적인 스타킹 스터퍼
코드 출현 2015 4일차
1 부
또 다른 체스 게임은 어떻습니까?
재작성...
의사 코드 내 알고리즘:
Import my MD5 library
Set index to 0
Do as long as the first five characters in the generated hash are not zeros
Increment index by 1
자바스크립트 내 알고리즘:
const MD5 = require('crypto-js/md5')
let index = 0, input = 'abcdef'
while (MD5(input + index).toString().slice(0,5) !== '00000') index++
return index
대기 중...
2 부
여섯 개의 0? 괜찮아요!
자바스크립트 내 알고리즘:
const MD5 = require('crypto-js/md5')
let index = 0, input = 'abcdef'
while (MD5(input + index).toString().slice(0,6) !== '000000') index++
return index
해냈어!!
Reference
이 문제에 관하여(이상적인 스타킹 스터퍼), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/rmion/the-ideal-stocking-stuffer-2f8텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)