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
- string
- array
- simulation
- 자바
- Binary Search
- Method
- 구현
- 파이썬
- sorting
- 코딩테스트
- Data Structure
- dynamic programming
- database
- java
- SQL
- Stack
- Class
- Tree
- Math
- geometry
- hash table
- greedy
- Counting
- Number Theory
- bit manipulation
- Binary Tree
- Matrix
- two pointers
- implement
- 코테
Archives
- Today
- Total
코린이의 소소한 공부노트
[LeetCode/Easy] 1496. Path Crossing 본문
1. Input
1) String path
- 움직일 순서가 동서남북(E,W,S,N)으로 적혀있다.
2. Output
1) (0,0)에서 시작해 path를 따라 움직일 때 지나왔던 경로를 겹쳐 지나게 되면 true, 아니면 false를 반환
- path를 따라 움직일 때 해당 방향으로 1씩 움직인다.
3. Constraint
1) 1 <= path.length <= 10^4
2) path는 'N', 'S', 'E', 'W'로 이루어져 있다.
4. Example
Input: path = "NES" -> Output: false
Input: path = "NESWW" -> Output: true
설명:
- 겹치는 경로가 없다.
- (0,0)에서 겹치게 된다.
5. Code
1) 첫 코드(2023/06/13)
class Solution {
public boolean isPathCrossing(String path) {
HashSet<String> s = new HashSet<>();
s.add("0,0");
boolean cross = false;
int x = 0, y = 0, i = 0;
while(!cross && i<path.length()){
char c = path.charAt(i++);
if(c=='N') y++;
else if(c=='E') x++;
else if(c=='S') y--;
else x--;
String next = x + "," + y;
if(!s.contains(next)) s.add(next);
else cross = true;
}
return cross;
}
}
- 67%, 60%
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[백준 온라인 저지] 2252. 줄 세우기 (0) | 2023.06.14 |
---|---|
[LeetCode/Easy] 1629. Slowest Key (0) | 2023.06.13 |
[LeetCode/Easy] 1399. Count Largest Group (0) | 2023.06.12 |
[LeetCode/Easy] 1379. Find a Corresponding Node of a Binary Tree in a Clone of That Tree (0) | 2023.06.12 |
[LeetCode/Easy] 1287. Element Appearing More Than 25% In Sorted Array (0) | 2023.06.08 |