Skip to content

Commit

Permalink
[level 0] Title: 7의 개수, Time: 0.01 ms, Memory: 10.1 MB -BaekjoonHub
Browse files Browse the repository at this point in the history
  • Loading branch information
mean71 committed Nov 20, 2024
1 parent 8d7e5ba commit 104e460
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1 +1 @@
solution=lambda l:sum(1 for s in map(str,l)for c in s if c=='7')
solution=lambda l:str(l).count('7')
4 changes: 2 additions & 2 deletions 프로그래머스/0/120912. 7의 개수/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

### 성능 요약

메모리: 10.2 MB, 시간: 0.01 ms
메모리: 10.1 MB, 시간: 0.01 ms

### 구분

Expand All @@ -16,7 +16,7 @@

### 제출 일자

2024년 11월 20일 21:32:14
2024년 11월 20일 21:33:16

### 문제 설명

Expand Down

0 comments on commit 104e460

Please sign in to comment.