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 |
Tags
- Method
- Tree
- 코딩테스트
- 구현
- Math
- Counting
- Class
- Matrix
- simulation
- two pointers
- array
- Binary Tree
- Stack
- 파이썬
- dynamic programming
- java
- geometry
- Number Theory
- string
- 자바
- database
- 코테
- Binary Search
- sorting
- Data Structure
- hash table
- implement
- bit manipulation
- greedy
- SQL
Archives
- Today
- Total
코린이의 소소한 공부노트
[LeetCode/Easy] 1436. Destination City 본문
1. Input
1) List<List<String>> paths
- [출발지, 도착지]가 담긴 리스트
2. Output
1) paths를 따라 갈 경우 최종적으로 도착하는 도시의 이름을 반환
3. Constraint
1) 1 <= paths.length <= 100
2) paths[i].length == 2
3) 1 <= 도시이름의 길이 <= 10
4) 출발지 != 도착지
5) 모든 문자열은 영어 대소문자와 공백문자로 이루어져있다.
4. Example
Input: paths = [["London","New York"],["New York","Lima"],["Lima","Sao Paulo"]] -> Output: "Sao Paulo"
5. Code
1) 첫 코드(2023/04/12)
boolean isEnd = false;
String location = paths.get(0).get(1);
while(!isEnd){
boolean find = false;
for(int i=0 ; i<paths.size() ; i++)
if(paths.get(i).get(0).equals(location)){
find = true;
location = paths.get(i).get(1);
break;
}
if(!find) isEnd = true;
}
return location;
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[LeetCode/Easy] 1460. Make Two Arrays Equal by Reversing Subarrays (0) | 2023.04.12 |
---|---|
[LeetCode/Easy] 1446. Consecutive Characters (0) | 2023.04.12 |
[LeetCode/Easy] 1422. Maximum Score After Splitting a String (0) | 2023.04.12 |
[LeetCode/Easy] 1417. Reformat The String (0) | 2023.04.12 |
[LeetCode/Easy] 1374. Generate a String With Characters That Have Odd Counts (0) | 2023.04.11 |