본문 바로가기
반응형

Programming38

[TypeScript]Installing TypeScript ( TypeScript 설치 ) 아래 가이드를 참고하여 TypeScript를 설치해 보자 https://www.typescriptlang.org/download How to set up TypeScript Add TypeScript to your project, or install TypeScript globally www.typescriptlang.org npm을 이용해 설치할 예정이므로 via npm을 참고하면 된다. 2023. 10. 11.
[LeetCode] 3. Longest Substring Without Repeating Characters Problem Given a string s, find the length of the longest substring without repeating characters. Example 1: Input: s = "abcabcbb" Output: 3 Explanation: The answer is "abc", with the length of 3. Example 2: Input: s = "bbbbb" Output: 1 Explanation: The answer is "b", with the length of 1. Example 3: Input: s = "pwwkew" Output: 3 Explanation: The answer is "wke", with the length of 3. Notice that.. 2023. 8. 1.
[LeetCode] 94. Binary Tree Inorder Traversal LeetCode Problem [Problem] Given the root of a binary tree, return the inorder traversal of its nodes' values. [Example] Input: root = [1,null,2,3] | Output: [1,3,2] Input: root = [] | Output: [] Input: root = [1] | Output: [1] [Constraints] The number of nodes in the tree is in the range [0, 100]. -100 오른쪽 서브트리 순서로 탐색 Inorder traversal (중위 탐색) : 왼쪽 서브트리 -> 현재 노드 -> 오른쪽 서브트리 순서로 탐색 Postorder tra.. 2023. 7. 31.
[ReactNative] Library for trail app 거리 계산: https://www.npmjs.com/package/haversine haversine A simple haversine module. Latest version: 1.1.1, last published: 4 years ago. Start using haversine in your project by running `npm i haversine`. There are 62 other projects in the npm registry using haversine. www.npmjs.com Map 연동: https://www.npmjs.com/package/react-native-maps react-native-maps React Native Mapview component for iOS + .. 2023. 5. 25.
[Expo] Expo site에 배포하기 Terminal 에서 expo publish 2023. 5. 25.
[Vercel] Server hosting platform 변경 ( Railway -> Vercel ) 학교 Term Project의 backend server hosting을 AWS에서 Railway로 변경했었다.하지만, Railway는 한달 내내 무료로 돌릴 수 없는 문제를 발견했다.대략 20일 지나면 서버가 멈춘다. ( 500 * 24 = 20.8 )다행히 Project 발표가 월초여서 문제 없이 발표는 잘 끝났다. 하지만, 해당 project를 portfolio로 쓸 수도 있으니 한달에 1/3을 지원 못하는 건 문제가 있다.그래서 무료 backend server hosting platform을 찾던 중 Vercel을 사용해보기로 결정했다.  Vercel 가입 (https://vercel.com/)Vercel에 접속하여 오른쪽 상단의 Sign up 버튼을 누르면 Vercel Account의 종류를 선.. 2023. 4. 23.
반응형