We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 05a2289 commit eb90c2dCopy full SHA for eb90c2d
2 files changed
프로그래머스/1/301646. 특정 형질을 가지는 대장균 찾기/README.md
@@ -1,6 +1,6 @@
1
# [level 1] 특정 형질을 가지는 대장균 찾기 - 301646
2
3
-[문제 링크](https://school.programmers.co.kr/learn/courses/30/lessons/301646#qna)
+[문제 링크](https://school.programmers.co.kr/learn/courses/30/lessons/301646)
4
5
### 성능 요약
6
@@ -16,7 +16,7 @@
16
17
### 제출 일자
18
19
-2025년 03월 04일 20:14:12
+2026년 06월 09일 23:12:56
20
21
### 문제 설명
22
프로그래머스/1/301646. 특정 형질을 가지는 대장균 찾기/특정 형질을 가지는 대장균 찾기.sql
@@ -1,3 +1,3 @@
-select count(*) as COUNT
-from ECOLI_DATA
-where (GENOTYPE & 2) = 0 and ((GENOTYPE & 1) > 0 or (GENOTYPE & 4) > 0)
+SELECT COUNT(*) as COUNT
+FROM ECOLI_DATA
+WHERE (GENOTYPE & 5) > 0 and not (GENOTYPE & 2)
0 commit comments