-
Notifications
You must be signed in to change notification settings - Fork 99
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
[정기적 풀이 추가] 2022.04.26 #41
Conversation
기존의 정답3 재원님의 코드는 다른문제의 해답입니다.(수박수박수박수박수박수.js)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
PR에 몇 문제를 풀이 하셨는지 정도는 적어주시면 좋을 것 같습니다!!
level-2/2개-이하로-다른-비트.js
Outdated
//https://github.com/codeisneverodd/programmers-coding-test | ||
//완벽한 정답이 아닙니다. | ||
//정답 1 - le2sky | ||
function solution(numbers) { | ||
const answer = []; | ||
function solution(n) { | ||
let answer = []; | ||
numbers.forEach((num) => { | ||
if (num % 2 == 0) answer.push(num + 1); | ||
else { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
이 부분은 이전 코드가 올바른 것 같은데, conflict을 확인하고 수정하신 것 이실까요? @prove-ability 확인 부탁드립니다!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
제가 컨플릭 수정할 때 커밋 히스토리를 보고 수정했는데 확인이 미흡했습니다! 수정하겠습니다!
@codeisneverodd |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
좋은 코드 잘 보았습니다 😁
갈 수록 코드가 더 깔끔해지시는 것 같아요!! 보고 많이 배웁니다
오늘은 코드에 대해 리뷰 남길 것은 없고, solution 과 별도의 함수를 만드실 때 그 위치에 대해 질문이 있습니다.
예를 들어, isPrime
함수를 만드실 때 solution
함수보다 상위에 위치시키신 명확한 이유가 있으신지 궁금합니다!!
저 부분은 절차적으로 코딩하고 싶었습니다!! level-1/소수-찾기.js |
[level - 1]
Add 음양-더하기.js
Add 약수의-개수와-덧셈.js
Add 정수-제곱근-판별.js
Add 소수-찾기.js
Add 문자열-내-p와-y의-개수.js
아.. commit 정리하고자 git reset 을 사용도 해봤는데 마음처럼 안되네요.. 😭