1. 프로그래머스 JS
Lv0. 짝수 홀수 개수
짝수와 홀수로 분류
각 개수를 배열에 담아 return
왜 계속 빈 배열이 나오는지 몰랐는데 %2
가 아니라 /2
를 하고 있었음..;
짝수, 홀수의 배열을 만들고 배열의 길이를 answer에 넣어 해결
다른 풀이
function solution(num_list) {
var answer = [0,0];
for(let a of num_list){
answer[a%2] += 1
}
return answer;
}
2. React query Udemy 강의
완강하기
["posts", currentPage]
const deleteMutation = useMutation((postId) => deletePost(postId));
<button onClick={() => deleteMutation.mutate(post.id)}>Delete</button>
deleteMutation.isError
, isLoading, isSuccess 활용 할 수 있다.