Skip to content

Instantly share code, notes, and snippets.

View Pchaewon's full-sized avatar
😀

Chaewon Park Pchaewon

😀
View GitHub Profile
@Pchaewon
Pchaewon / Solution.py
Created October 14, 2021 13:14
[프로그래머스] 수박수박수박수박수박수?
def solution(n):
answer = ''
for i in range(n):
if i%2==0:
answer +='수'
else:
answer +='박'
return answer
@Pchaewon
Pchaewon / image-slider-with-multiple-controls-and-mobile-swipe-control-javascript.markdown
Created February 16, 2021 02:09
Image slider with multiple controls and mobile swipe control (Javascript)