Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- ssh
- 단축키
- profile
- grep
- vscode
- plugin
- lsof
- tomcat
- Quartz
- Mac
- xargs
- netsh
- web.xml
- Source
- Windows 10
- context
- resource
- Windows
- IntelliJ
- port
- import
- Eclipse
- VirtualBox
- JavaScript
- GIT
- 네트워크
- find
- bash
- 줄바꿈 문자
- maVen
Archives
- Today
- Total
develog
[java] 배열내 중복 체크 본문
private void findDuplicateValue(String[] list) {
for (int i = 0; i < list.length; i++) {
String str1 = list[i];
for (int j = 0; j < list.length; j++) {
if (i == j) continue;
String str2 = list[j];
if (str1.equals(str2)) {
// System.out.println("중복 => " + i + ". " + str1);
break;
}
}
}
}
'Dev > Java' 카테고리의 다른 글
Async (0) | 2013.07.09 |
---|---|
callback (0) | 2013.07.09 |
generate file name (0) | 2013.07.02 |
String 비교 (0) | 2013.07.02 |
Object.toString(), System.identityHashCode() (0) | 2013.07.02 |
Comments