Skip to content

Instantly share code, notes, and snippets.

View muik's full-sized avatar
🏠
Working from home

Ed Jeon (전무익) muik

🏠
Working from home
View GitHub Profile
Hello
@muik
muik / heatmaps.html
Last active August 29, 2015 14:14
Instagram Jeju tag Heatmaps
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Heatmaps</title>
<style>
html, body, #map-canvas {
height: 100%;
margin: 0px;
padding: 0px
@muik
muik / pingpong.py
Created July 21, 2016 16:25
Pingpong with some constraints
# 8퍼센트 개발 면접문제를 풀어보자
# https://brunch.co.kr/@sunghokimnxag/5
#
# 핑퐁 게임 (반드시 Python으로 작성할 것)
# 일련의 숫자가 있고, 이 숫자는 1씩 증가, 또는 감소한다. n번째의 숫자가 있을 시에,
# 이 숫자가 7의 배수(7, 14, 21,...)거나 7이란 숫자를 포함할 시에 (7, 17, 27,...) 방향을 바꾼다.
# 즉, 1, 2, 3, 4, 5, 6, [7], 6, 5, 4, 3, 2, 1, [0], 1, 2, [3], 2, 1, 0, [-1], 0, 1
# 과 같이 숫자는 진행한다. (첫 번째 7은 7번째, 두 번째 0은 14번째, 세 번째 3은 17번째, 네 번째 -1은 21번째)
# 다음의 제약 하에 pingpong(x)의 함수를 작성하라. 예시의 인풋과 아웃풋은 다음과 같다.
# pingpong(8) = 6