Skip to content

Instantly share code, notes, and snippets.

View wjdwjdtn92's full-sized avatar
🙃

감자 wjdwjdtn92

🙃
  • Seoul, Korea
View GitHub Profile
⭐ Total Stars: 3
➕ Total Commits: 1,837
🔀 Total PRs: 281
🚩 Total Issues: 196
📦 Contributed to: 15
🌞 Morning 158 commits ███▍░░░░░░░░░░░░░░░░░ 16.6%
🌆 Daytime 378 commits ████████▎░░░░░░░░░░░░ 39.8%
🌃 Evening 320 commits ███████░░░░░░░░░░░░░░ 33.7%
🌙 Night 93 commits ██░░░░░░░░░░░░░░░░░░░ 9.8%
function solution(num1, num2) {
var answer = 0;
answer = parseInt(num1 / num2, 10);
return answer;
}