We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f04b55e commit 32d012fCopy full SHA for 32d012f
2 files changed
프로그래머스/0/120806. 두 수의 나눗셈/README.md
@@ -1,10 +1,10 @@
1
# [level 0] 두 수의 나눗셈 - 120806
2
3
-[문제 링크](https://school.programmers.co.kr/learn/courses/30/lessons/120806?language=javascript)
+[문제 링크](https://school.programmers.co.kr/learn/courses/30/lessons/120806)
4
5
### 성능 요약
6
7
-메모리: 33.5 MB, 시간: 0.03 ms
+메모리: 33.5 MB, 시간: 0.04 ms
8
9
### 구분
10
@@ -16,7 +16,7 @@
16
17
### 제출 일자
18
19
-2025년 05월 09일 14:41:39
+2025년 05월 09일 15:31:44
20
21
### 문제 설명
22
프로그래머스/0/120806. 두 수의 나눗셈/두 수의 나눗셈.js
@@ -1 +1 @@
-const solution = (x,y) => Math.trunc(1000*x/y)
+const solution = (x,y) => ~~(1000*x/y)
0 commit comments