💡 LeetCode 20 - Valid Parentheses
문제 Given a string s containing just the characters ‘(‘, ‘)’, ‘{‘, ‘}’, ‘[’ and ‘]’, determine if the input string is valid. An input string is valid if: Open brackets must be closed by th...
문제 Given a string s containing just the characters ‘(‘, ‘)’, ‘{‘, ‘}’, ‘[’ and ‘]’, determine if the input string is valid. An input string is valid if: Open brackets must be closed by th...
문제 Write a function to find the longest common prefix string amongst an array of strings. If there is no common prefix, return an empty string “”. 입출력 예제 ✅ 예제 1 Input: strs = ["flower","flow",...
문제 Roman numerals are represented by seven different symbols: I, V, X, L, C, D and M. Symbol Value I 1 V 5 X 10 L 50 C 100 D ...
문제 Given an integer x, return true if x is a palindrome, and false otherwise. 입출력 예제 ✅ 예제 1 Input: x = 121 Output: true Explanation: 121 reads as 121 from left to right and from right to left....
문제 Given an array of integers nums and an integer target, return indices of the two numbers such that they add up to target. You may assume that each input would have exactly one solution, an...
CI · CD Pipeline 구축은 왜 했나? 프로젝트 개발을 마치고 새로운 Release가 생길 때마다 배포를 하는 것은 효율적이지 못하다. 처음으로 진행한 프로젝트에서 그렇게 했었는데, 이번에는 프로젝트 배포에 있어 효율성 및 일관성을 가져가기 위해 자동화를 해보고자 한다. Infrastructure 구조 위 구조로 무중단 배...
프로젝트 배포 과정 JDK 설치 Oracle DB 설치 JAR 파일 실행 테스트 ✅ JDK 설치 # 우분투 저장소 내 패키지 목록 갱신 sudo apt update # JDK 설치 sudo apt install openjdk-17-jdk # JDK 환경설정 등록 sudo vi /etc/environment JAVA_HOME="/...
왜 OCI를 도입했는가? OCI에서는 Always Free Resources를 제공한다. 프로젝트 배포에 있어서 비용 문제는 무엇보다 가장 중요한 문제라고 생각한다. Always Free Resources 문서 Always Free Resources 문서 링크 Instance 구축 과정 ✅ VCN 설정 Networking >...
JWT란? JWT(Json Web Token)은 간결하고도 독립된 방식으로 양 단 사이의 정보를 전송할 수 있도록 정의된 RFC 7519 웹 표준이다. 전송된 정보는 디지털 서명을 통해 검증되므로 신뢰할 수 있다. 다음 두 가지 방식으로 디지털 서명을 할 수 있다. ✅ RSA 또는 ECDSA 알고리즘을 통해 공개/비공개 키 쌍으로 ...
왜 Jira를 도입했는가? 전 직장에서 프로젝트 관리 도구로 Jira도 후보가 되었으나 결국 Google Sheets를 사용했던 기억이 있다. 개인적으로는 Jira가 Sprint를 관리할 수 있다는 점에서 굉장히 좋아 보였고, 실제로도 현업에서 많이 사용하는 것으로 보여서 한 번 사용해보고자 한다. 접속 Jira 링크 시작하기 회...