์ผ | ์ | ํ | ์ | ๋ชฉ | ๊ธ | ํ |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 |
Tags
- ํ์ดํ๋ก๊ทธ๋๋ฐ
- ์๋ฐ
- spring data jpa
- ๋ฐฑ์๋
- ์ฒซ๊ธ์๋๋ฌธ์
- Publishing
- ๊นํ๋ธ
- ์ ๋ค๋ฆญ์ค
- ์๊ณ ๋ฆฌ์ฆ
- ์ปฌ๋ ์ ํ๋ ์์ํฌ
- ์ธํ ๋ฆฌ์ ์ด
- Spring Data JDBC
- FilterChain
- ์๋ฃ๊ตฌ์กฐ
- CLI๋ช ๋ น์ด
- ๊ทธ๋ฆฌ๋
- java
- ๋ฐ์ผ๋ฆฌ์ฝ๋ฉ
- CSS
- ๊ณ์ฐ๊ธฐ๋ง๋ค๊ธฐ
- HTML
- Spring Security
- fibonacci
- ๋ฐฑ์ค์๊ณ ๋ฆฌ์ฆ
- ๊ฑฐ๋ญ์ ๊ณฑ
- ๋ฌธ์์ด๋ค์ง๊ธฐ
- ์คํ๋ง
- ํ๊ณ
- ๋ถํธ์บ ํ
- testing
Archives
- Today
- Total
๋ชฉ๋กisSubsetOf (1)
๋์ ๋ชจ์
[DailyCoding] 24 | isSubsetOf
โ๏ธ Description Return whether the sample is a subset of the base by receiving two arrays input base: temporary Array with element of int sample: temporary Array with element of int output: boolean caution: no duplicates example of in/output int[] base = new int[]{1, 2, 3, 4, 5}; int[] sample = new int[]{1, 3}; boolean output = isSubsetOf(base, sample); System.out.println(output); // --> true sam..
SEB/Daily Coding
2022. 8. 25. 21:35