Skip to content

Latest commit

ย 

History

History
37 lines (25 loc) ยท 803 Bytes

sharing.md

File metadata and controls

37 lines (25 loc) ยท 803 Bytes

๊ณต๋ฐฐ์ˆ˜

๐Ÿ“Œ ๋ฌธ์ œ ์„ค๋ช…

์ •์ˆ˜ number์™€ n, m์ด ์ฃผ์–ด์ง‘๋‹ˆ๋‹ค. number๊ฐ€ n์˜ ๋ฐฐ์ˆ˜์ด๋ฉด์„œ m์˜ ๋ฐฐ์ˆ˜์ด๋ฉด 1์„ ์•„๋‹ˆ๋ผ๋ฉด 0์„ returnํ•˜๋„๋ก solution ํ•จ์ˆ˜๋ฅผ ์™„์„ฑํ•ด์ฃผ์„ธ์š”.

์ œํ•œ ์กฐ๊ฑด

  • 10 โ‰ค number โ‰ค 100
  • 2 โ‰ค n, m < 10

์ž…์ถœ๋ ฅ ์˜ˆ

number n m result
60 2 3 1
55 10 5 0

๐Ÿง ์ ‘๊ทผ

์‚ผํ•ญ์—ฐ์‚ฐ์ž ์‚ฌ์šฉ

class Solution {
    public int solution(int number, int n, int m) {
        return (number % n == 0) && (number % m == 0) ? 1 : 0 ;
    }
}

๐Ÿ’ก ํ’€์ด

number๋ฅผ n๊ณผ m์œผ๋กœ ๊ฐ๊ฐ ๋‚˜๋จธ์ง€ ์—ฐ์‚ฐ์ž๋ฅผ ์‚ฌ์šฉํ•ด์„œ ๋‘ ์กฐ๊ฑด์—์„œ ๋ชจ๋‘ ๋‚˜๋จธ์ง€๊ฐ€ 0์ผ ์‹œ, ์กฐ๊ฑด์„ ๋ถ€ํ•ฉํ•˜๊ฒŒ๋œ๋‹ค.

๐Ÿ“˜ ๊ทธ ์™ธ์˜ ํ’€์ด

==================