Skip to content

Commit eb90c2d

Browse files
committed
[level 1] Title: 특정 형질을 가지는 대장균 찾기, Time: , Memory: undefined -BaekjoonHub
1 parent 05a2289 commit eb90c2d

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

프로그래머스/1/301646. 특정 형질을 가지는 대장균 찾기/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# [level 1] 특정 형질을 가지는 대장균 찾기 - 301646
22

3-
[문제 링크](https://school.programmers.co.kr/learn/courses/30/lessons/301646#qna)
3+
[문제 링크](https://school.programmers.co.kr/learn/courses/30/lessons/301646)
44

55
### 성능 요약
66

@@ -16,7 +16,7 @@
1616

1717
### 제출 일자
1818

19-
2025년 03월 04일 20:14:12
19+
2026년 06월 09일 23:12:56
2020

2121
### 문제 설명
2222

Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
select count(*) as COUNT
2-
from ECOLI_DATA
3-
where (GENOTYPE & 2) = 0 and ((GENOTYPE & 1) > 0 or (GENOTYPE & 4) > 0)
1+
SELECT COUNT(*) as COUNT
2+
FROM ECOLI_DATA
3+
WHERE (GENOTYPE & 5) > 0 and not (GENOTYPE & 2)

0 commit comments

Comments
 (0)