알고리즘/Programmers

[프로그래머스 Lv.0] 두 수의 나눗셈

백구스 2022. 10. 19. 00:41
  • 내 풀이
const solution = (num1,num2) => Math.floor(num1 / num2 * 1000)