Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

토니 / 6월 3주차 / 6문제 #22

Open
wants to merge 6 commits into
base: tony
Choose a base branch
from
Original file line number Diff line number Diff line change
@@ -0,0 +1,207 @@
# [level 1] 로또의 최고 순위와 최저 순위 - 77484

[문제 링크](https://school.programmers.co.kr/learn/courses/30/lessons/77484)

### 성능 요약

메모리: 33.4 MB, 시간: 0.08 ms

### 구분

코딩테스트 연습 > 2021 Dev-Matching: 웹 백엔드 개발자(상반기)

### 채점결과

Empty

### 문제 설명

<p><code>로또 6/45</code>(이하 '로또'로 표기)는 1부터 45까지의 숫자 중 6개를 찍어서 맞히는 대표적인 복권입니다. 아래는 로또의 순위를 정하는 방식입니다. <sup id="fnref1"><a href="#fn1">1</a></sup></p>
<table class="table">
<thead><tr>
<th>순위</th>
<th>당첨 내용</th>
</tr>
</thead>
<tbody><tr>
<td>1</td>
<td>6개 번호가 모두 일치</td>
</tr>
<tr>
<td>2</td>
<td>5개 번호가 일치</td>
</tr>
<tr>
<td>3</td>
<td>4개 번호가 일치</td>
</tr>
<tr>
<td>4</td>
<td>3개 번호가 일치</td>
</tr>
<tr>
<td>5</td>
<td>2개 번호가 일치</td>
</tr>
<tr>
<td>6(낙첨)</td>
<td>그 외</td>
</tr>
</tbody>
</table>
<p>로또를 구매한 민우는 당첨 번호 발표일을 학수고대하고 있었습니다. 하지만, 민우의 동생이 로또에 낙서를 하여, 일부 번호를 알아볼 수 없게 되었습니다. 당첨 번호 발표 후, 민우는 자신이 구매했던 로또로 당첨이 가능했던 최고 순위와 최저 순위를 알아보고 싶어 졌습니다. <br>
알아볼 수 없는 번호를 <code>0</code>으로 표기하기로 하고, 민우가 구매한 로또 번호 6개가 <code>44, 1, 0, 0, 31 25</code>라고 가정해보겠습니다. 당첨 번호 6개가 <code>31, 10, 45, 1, 6, 19</code>라면, 당첨 가능한 최고 순위와 최저 순위의 한 예는 아래와 같습니다.</p>
<table class="table">
<thead><tr>
<th>당첨 번호</th>
<th>31</th>
<th>10</th>
<th>45</th>
<th>1</th>
<th>6</th>
<th>19</th>
<th>결과</th>
</tr>
</thead>
<tbody><tr>
<td>최고 순위 번호</td>
<td><u><strong>31</strong></u></td>
<td>0→<u><strong>10</strong></u></td>
<td>44</td>
<td><u><strong>1</strong></u></td>
<td>0→<u><strong>6</strong></u></td>
<td>25</td>
<td>4개 번호 일치, 3등</td>
</tr>
<tr>
<td>최저 순위 번호</td>
<td><u><strong>31</strong></u></td>
<td>0→11</td>
<td>44</td>
<td><u><strong>1</strong></u></td>
<td>0→7</td>
<td>25</td>
<td>2개 번호 일치, 5등</td>
</tr>
</tbody>
</table>
<ul>
<li>순서와 상관없이, 구매한 로또에 당첨 번호와 일치하는 번호가 있으면 맞힌 걸로 인정됩니다. </li>
<li>알아볼 수 없는 두 개의 번호를 각각 10, 6이라고 가정하면 3등에 당첨될 수 있습니다.

<ul>
<li>3등을 만드는 다른 방법들도 존재합니다. 하지만, 2등 이상으로 만드는 것은 불가능합니다. </li>
</ul></li>
<li>알아볼 수 없는 두 개의 번호를 각각 11, 7이라고 가정하면 5등에 당첨될 수 있습니다.

<ul>
<li>5등을 만드는 다른 방법들도 존재합니다. 하지만, 6등(낙첨)으로 만드는 것은 불가능합니다.</li>
</ul></li>
</ul>

<p>민우가 구매한 로또 번호를 담은 배열 lottos, 당첨 번호를 담은 배열 win_nums가 매개변수로 주어집니다. 이때, 당첨 가능한 최고 순위와 최저 순위를 차례대로 배열에 담아서 return 하도록 solution 함수를 완성해주세요. </p>

<h5>제한사항</h5>

<ul>
<li>lottos는 길이 6인 정수 배열입니다.</li>
<li>lottos의 모든 원소는 0 이상 45 이하인 정수입니다.

<ul>
<li>0은 알아볼 수 없는 숫자를 의미합니다.</li>
<li>0을 제외한 다른 숫자들은 lottos에 2개 이상 담겨있지 않습니다.</li>
<li>lottos의 원소들은 정렬되어 있지 않을 수도 있습니다.</li>
</ul></li>
<li>win_nums은 길이 6인 정수 배열입니다.</li>
<li>win_nums의 모든 원소는 1 이상 45 이하인 정수입니다.

<ul>
<li>win_nums에는 같은 숫자가 2개 이상 담겨있지 않습니다.</li>
<li>win_nums의 원소들은 정렬되어 있지 않을 수도 있습니다.</li>
</ul></li>
</ul>

<hr>

<h5>입출력 예</h5>
<table class="table">
<thead><tr>
<th>lottos</th>
<th>win_nums</th>
<th>result</th>
</tr>
</thead>
<tbody><tr>
<td>[44, 1, 0, 0, 31, 25]</td>
<td>[31, 10, 45, 1, 6, 19]</td>
<td>[3, 5]</td>
</tr>
<tr>
<td>[0, 0, 0, 0, 0, 0]</td>
<td>[38, 19, 20, 40, 15, 25]</td>
<td>[1, 6]</td>
</tr>
<tr>
<td>[45, 4, 35, 20, 3, 9]</td>
<td>[20, 9, 3, 45, 4, 35]</td>
<td>[1, 1]</td>
</tr>
</tbody>
</table>
<h5>입출력 예 설명</h5>

<p>입출력 예 #1<br>
문제 예시와 같습니다.</p>

<p>입출력 예 #2<br>
알아볼 수 없는 번호들이 아래와 같았다면, 1등과 6등에 당첨될 수 있습니다. </p>
<table class="table">
<thead><tr>
<th>당첨 번호</th>
<th>38</th>
<th>19</th>
<th>20</th>
<th>40</th>
<th>15</th>
<th>25</th>
<th>결과</th>
</tr>
</thead>
<tbody><tr>
<td>최고 순위 번호</td>
<td>0→<u><strong>38</strong></u></td>
<td>0→<u><strong>19</strong></u></td>
<td>0→<u><strong>20</strong></u></td>
<td>0→<u><strong>40</strong></u></td>
<td>0→<u><strong>15</strong></u></td>
<td>0→<u><strong>25</strong></u></td>
<td>6개 번호 일치, 1등</td>
</tr>
<tr>
<td>최저 순위 번호</td>
<td>0→21</td>
<td>0→22</td>
<td>0→23</td>
<td>0→24</td>
<td>0→26</td>
<td>0→27</td>
<td>0개 번호 일치, 6등</td>
</tr>
</tbody>
</table>
<p>입출력 예 #3<br>
민우가 구매한 로또의 번호와 당첨 번호가 모두 일치하므로, 최고 순위와 최저 순위는 모두 1등입니다. </p>

<div class="footnotes">
<hr>
<ol>

<li id="fn1">
<p>실제로 사용되는 로또 순위의 결정 방식과는 약간 다르지만, 이 문제에서는 지문에 명시된 대로 로또 순위를 결정하도록 합니다. &nbsp;<a href="#fnref1">↩</a></p>
</li>

</ol>
</div>


> 출처: 프로그래머스 코딩 테스트 연습, https://programmers.co.kr/learn/challenges
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
function solution(lottos, win_nums) {
var answer = [];
// 최저등수
let min = 0
// 민우의 복권 중 숫자가 0인 갯수
let zero = 0;
lottos.sort((a, b) => a - b)
win_nums.sort((a, b) => a - b)
for (let i = 0; i < lottos.length; i++) {
if(lottos[i] === 0) zero++ // 민우의 복권 중 숫자가 0인 갯수 카운드
if(lottos.includes(win_nums[i])) min++
}
// min === 5 이거나 6일 때 최저 순위는 6
// 겹치는 것이 3개면 4등
// 겹치는 것이 4개면 3등
let score = 6 - min + 1
if (min === 0 || min === 1) answer.push(6)
else answer.push(score)
answer.push(score - zero)
answer.reverse()
if(answer[0] === 7) answer[0] = 6
return answer
}
68 changes: 68 additions & 0 deletions 프로그래머스/lv2/12909. 올바른 괄호/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
# [level 2] 올바른 괄호 - 12909

[문제 링크](https://school.programmers.co.kr/learn/courses/30/lessons/12909)

### 성능 요약

메모리: 38.4 MB, 시간: 6.04 ms

### 구분

코딩테스트 연습 > 스택/큐

### 채점결과

Empty

### 문제 설명

<p>괄호가 바르게 짝지어졌다는 것은 '(' 문자로 열렸으면 반드시 짝지어서 ')' 문자로 닫혀야 한다는 뜻입니다. 예를 들어</p>

<ul>
<li>"()()" 또는 "(())()" 는 올바른 괄호입니다.</li>
<li>")()(" 또는 "(()(" 는 올바르지 않은 괄호입니다.</li>
</ul>

<p>'(' 또는 ')' 로만 이루어진 문자열 s가 주어졌을 때, 문자열 s가 올바른 괄호이면 true를 return 하고, 올바르지 않은 괄호이면 false를 return 하는 solution 함수를 완성해 주세요.</p>

<h5>제한사항</h5>

<ul>
<li>문자열 s의 길이 : 100,000 이하의 자연수</li>
<li>문자열 s는 '(' 또는 ')' 로만 이루어져 있습니다.</li>
</ul>

<hr>

<h5>입출력 예</h5>
<table class="table">
<thead><tr>
<th>s</th>
<th>answer</th>
</tr>
</thead>
<tbody><tr>
<td>"()()"</td>
<td>true</td>
</tr>
<tr>
<td>"(())()"</td>
<td>true</td>
</tr>
<tr>
<td>")()("</td>
<td>false</td>
</tr>
<tr>
<td>"(()("</td>
<td>false</td>
</tr>
</tbody>
</table>
<h5>입출력 예 설명</h5>

<p>입출력 예 #1,2,3,4<br>
문제의 예시와 같습니다.</p>


> 출처: 프로그래머스 코딩 테스트 연습, https://programmers.co.kr/learn/challenges
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
function solution(s){
if(s[0] === ')') return false
let stack = []
for(let x of s) {
if (x === '(') stack.push(')')
else stack.pop()
}

return stack.length === 0 ? true : false
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
function solution(s) {
var answer = '';

let arr = s.split(" ")
for (let x of arr) {
// 숫자라면
for(let i = 0; i < x.length; i++) {
if(typeof x[i] === 'number') answer += x[i]
if(x[i] === ' ') answer += " "
else if(i === 0) answer += x[i].toUpperCase()
else answer += x[i].toLowerCase();
}
answer += ' '

}
const newArr = answer.split('')
newArr.pop()
let na = newArr.join('')
return na
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
# [level 2] JadenCase 문자열 만들기 - 12951

[문제 링크](https://school.programmers.co.kr/learn/courses/30/lessons/12951)

### 성능 요약

메모리: 33.4 MB, 시간: 0.07 ms

### 구분

코딩테스트 연습 > 연습문제

### 채점결과

Empty

### 문제 설명

<p>JadenCase란 모든 단어의 첫 문자가 대문자이고, 그 외의 알파벳은 소문자인 문자열입니다. 단, 첫 문자가 알파벳이 아닐 때에는 이어지는 알파벳은 소문자로 쓰면 됩니다. (첫 번째 입출력 예 참고)<br>
문자열 s가 주어졌을 때, s를 JadenCase로 바꾼 문자열을 리턴하는 함수, solution을 완성해주세요.</p>

<h5>제한 조건</h5>

<ul>
<li>s는 길이 1 이상 200 이하인 문자열입니다.</li>
<li>s는 알파벳과 숫자, 공백문자(" ")로 이루어져 있습니다.

<ul>
<li>숫자는 단어의 첫 문자로만 나옵니다.</li>
<li>숫자로만 이루어진 단어는 없습니다.</li>
<li>공백문자가 연속해서 나올 수 있습니다.</li>
</ul></li>
</ul>

<h5>입출력 예</h5>
<table class="table">
<thead><tr>
<th>s</th>
<th style="text-align: center">return</th>
</tr>
</thead>
<tbody><tr>
<td>"3people unFollowed me"</td>
<td style="text-align: center">"3people Unfollowed Me"</td>
</tr>
<tr>
<td>"for the last week"</td>
<td style="text-align: center">"For The Last Week"</td>
</tr>
</tbody>
</table>
<hr>

<p>※ 공지 - 2022년 1월 14일 제한 조건과 테스트 케이스가 추가되었습니다.</p>


> 출처: 프로그래머스 코딩 테스트 연습, https://programmers.co.kr/learn/challenges
Loading