Continuous Challenge

[LeetCode] 20. Valid Parentheses _ Stack 본문

Study/LeetCode with Java (2021)

[LeetCode] 20. Valid Parentheses _ Stack

응굥 2021. 8. 8. 16:02
728x90
728x90

문제 - 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()이라는 함수를 사용한다.

728x90
728x90

'Study > LeetCode with Java (2021)' 카테고리의 다른 글

[LeetCode] 1. Two Sum _ Map  (0) 2021.08.08
Comments