Skip to content

Commit

Permalink
Merge pull request ZoranPandovski#2688 from jihyunseol/patch-4
Browse files Browse the repository at this point in the history
Create README(KR).md
  • Loading branch information
ZoranPandovski authored Nov 24, 2020
2 parents 3fc5921 + a189cc8 commit 4f9bdaa
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions bit_manipulation/set_kth_bit/README(KR).md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
음수가 아닌 정수 'N'과 'k'가 주어진다. 오른쪽에서 k번째 비트를 'N'의 이진법으로 설정한다. 결과를 표시한다.

예 1: 입력: 5 1

출력: 7

예 2: 입력: 10 2

출력: 14

설명: 첫 번째 예에서 5의 이진 표현은 101이며 첫 번째 비트를 오른쪽에서 설정할 때(지수를 0으로 가정할 때), 이진 표현은 111 즉 7이 된다.

0 comments on commit 4f9bdaa

Please sign in to comment.