일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 이것이자바다
- 항해플러스 백엔드 7기
- 항해플러스
- 스프링입문
- 자바연습문제
- 항해플러스 회고
- 서블릿
- Java의정석
- 항해플러스 백엔드
- 시큐어코딩
- 스프링
- JPA
- 항해 추천인
- 자바공부
- Spring
- Secure Coding
- 항해 추천인코드
- 불친절한SQL프로그래밍
- 제네릭
- 자바의정석
- 불친절한 SQL 프로그래밍
- 스프링 핵심원리
- 자바의정석 연습문제
- 스프링 부트와 JPA
- Python
- java
- 김영한
- 스프링MVC
- Numpy
- 인프런
- Today
- Total
Continuous Challenge
[LeetCode] 20. Valid Parentheses _ Stack 본문
문제 - https://leetcode.com/problems/valid-parentheses/
Valid Parentheses - LeetCode
Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview.
leetcode.com
나의 풀이 - https://github.com/o3ozzvb/Leetcode/blob/master/src/ValidParentheses_20.java
GitHub - o3ozzvb/Leetcode
Contribute to o3ozzvb/Leetcode development by creating an account on GitHub.
github.com
Stack - http://tcpschool.com/java/java_collectionFramework_stackQueue
코딩교육 티씨피스쿨
4차산업혁명, 코딩교육, 소프트웨어교육, 코딩기초, SW코딩, 기초코딩부터 자바 파이썬 등
tcpschool.com
알고리즘 풀이를 할 때에 C++ 을 주로 사용했던 터라 Java 내 함수 사용이 미숙하여 이를 정리하며 습득해야할 필요성을 느낀다.
C++ 에서는 Stack의 top을 얻고자 할 때 top()이라는 함수를 사용하였는데 Java에는 peek()이라는 함수를 사용한다.
'Study > LeetCode with Java (2021)' 카테고리의 다른 글
[LeetCode] 1. Two Sum _ Map (1) | 2021.08.08 |
---|