분류 전체보기 300

[wpf] ScrollViewer와 Mouse Wheel Event

1. 위아래 Mouse Wheel Event 특별한 설정이 필요 없이 기본적으로 ScrollViewer를 사용하면 됩니다. xaml 코드 2. 좌우 Mouse Wheel Event 좌우 Mouse Wheel Event를 하기 위해서는 HorizontalScrollBarVisibility와 PreviewMouseWheel 이벤트를 설정해 주어야 합니다. xaml 코드 cs 코드 private void ScrollViewer_PreviewMouseWheel(object sender, MouseWheelEventArgs e) { ScrollViewer sv = sender as ScrollViewer; if (0 > e.Delta) { sv.LineRight(); }else{ sv.LineLeft(); } e..

[python]Holiday VI - Shark Pontoon

www.codewars.com/kata/57e921d8b36340f1fd000059/train/python Codewars: Achieve mastery through challenge Codewars is where developers achieve code mastery through challenge. Train on kata in the dojo and reach your highest potential. www.codewars.com 이 문제는 바다에서 상어에게서 도망칠 수 있을지 없을지를 판단하는 것입니다. 도망칠 수 있으면 "Alive!"를 도망칠 수 없으면 "Shark Bait!"를 반환하면 됩니다. 이 문제에서는 다음의 5가지 변수가 주어집니다. 변수 설명 sharkDistance 상어와..

[python]Exclusive "or" (xor) Logical Operator

www.codewars.com/kata/56fa3c5ce4d45d2a52001b3c/train/python Codewars: Achieve mastery through challenge Codewars is where developers achieve code mastery through challenge. Train on kata in the dojo and reach your highest potential. www.codewars.com 이 문제는 입력받은 두 불리언을 xor 한 값을 반환하는 것입니다. xor이란 수리 논리학에서 주어진 2개의 명제 가운데 1개만 참일 경우를 말합니다. 벤 다이어 그램으로 보면 다음과 같습니다. 더 자세한 정보는 아래의 사이트에서 확인하시면 됩니다. ko.wikip..

[python]How good are you really?

www.codewars.com/kata/5601409514fc93442500010b/train/python Codewars: Achieve mastery through challenge Codewars is where developers achieve code mastery through challenge. Train on kata in the dojo and reach your highest potential. www.codewars.com 이 문제는 내 점수가 반 평균보다 높은지 낮은지 판별하는 문제입니다. 반 평균보다 높을 경우 True를 반환하고 낮을 경우 False를 반환하면 됩니다. 1. sum()과 len() 사용 sum() : 리스트 요소가 모두 숫자일 경우 리스트의 합을 구할 수 있습니다..

[python]Thinkful - Number Drills: Blue and red marbles

www.codewars.com/kata/5862f663b4e9d6f12b00003b/train/python Codewars: Achieve mastery through challenge Codewars is where developers achieve code mastery through challenge. Train on kata in the dojo and reach your highest potential. www.codewars.com 이 문제는 사실 영어 해석이 문제인 문제입니다.(뭔가... 말이 이상하네요.) 즉, 영어 해석을 잘한다면 풀이는 어렵지 않은 문제입니다. 가방 안에 파란 구슬과 빨간 구슬이 섞여 있을 때 파란색 구슬을 꺼낼 확률을 구하는 문제입니다. 입력 값은 (가방에 넣은 파란색..

[python]No zeros for heros

www.codewars.com/kata/570a6a46455d08ff8d001002/train/python Codewars: Achieve mastery through challenge Codewars is where developers achieve code mastery through challenge. Train on kata in the dojo and reach your highest potential. www.codewars.com 이 문제는 입력받은 수에서 숫자의 끝자리(1의 자리 수)가 0이 되지 않도록 만드는 것입니다. 만약 입력받는 수가 0일 경우는 0을 반환하면 됩니다. 이 문제는 % 연산자와 // 연산자를 이용하거나 rstrip()을 이용하면 쉽게 풀 수 있습니다. 1. % 연산자와..

728x90