5월에 5일차 입니다. 이번 문제는 다양한 방법이 있는 것 같아요. 난이도는 Easy 입니다. 한번 문제를 보고 풀어보시죠. 1. 문제 문제를 보면 중복이 되지 않는 알파벳의 위치가 최소인 지점을 찾아라. 입니다. 첫번째 예시에서 leetcode의 l의 위치가 0이면서 중복이 되지 않기 때문에 답은 0이 되죠. 두번째 예시에서 loveleetcode의 v의 위치가 2이면서 중복이 되지 않기 때문에 답은 2가 됩니다. 이렇게 위치를 찾아내면 됩니다. 2. 풀이 풀이방법1 class Solution { public int firstUniqChar(String s) { // 초기 세팅 int[] alpa = new int[26]; Arrays.fill(alpa, -1); // 알파벳의 위치를 파악하고 중복이면..
5월 챌린지 - 4일차 입니다. 연휴 여서 1~2일차 빼먹고.. 3일차부터 하고 있네요 ㅠㅠ 1. 문제 - Number Complement 문제는 다음과 같습니다. Given a positive integer, output its complement number. The complement strategy is to flip the bits of its binary representation. 양의 정수가 주어지고 출력은 주어진 수의 complement number로 출력합니다. complement strategy는 주어진 양의 정수의 이항 표현을 뒤집는 것이다. 그래서 예제를 보면 The binary representation of 5 is 101 (no leading zero bits), and it..
27일차 LeetCode 도전 입니다. Maximal Square. 1. 문제 Maximal Square 라는 문제입니다. 1로 구성된 정사각형의 넓이를 구하는 문제입니다. 위의 예제로 보면 1이 4칸으로 구성된 정사각형이고 2 2 이기 때문에 답은 2*2로 4가 출력됩니다. 해당 문제는 DP 기본 문제로 생각보다 쉽게 구현이 가능합니다. 2. 풀이 class Solution { public int maximalSquare(char[][] matrix) { int n = matrix.length; if(n == 0) return 0; int m = matrix[0].length; int[][] DP = new int[n+1][m+1]; int max = 0; for(int i=1; i
12일차 Last Stone Weight 입니다. -문제 : https://leetcode.com/explore/challenge/card/30-day-leetcoding-challenge/529/week-2/3297/ We have a collection of stones, each stone has a positive integer weight. Each turn, we choose the two heaviest stones and smash them together. Suppose the stones have weights x and y with x
leetCode 5일차 리뷰 입니다. 문제 이름은 Best Time to Buy and Sell Stock II - 문제 - 풀이 문제를 잘 읽어보면 생각보다 쉽게 문제를 풀 수 있는 방법을 찾을 수 있습니다. 배열의 1번째 index부터 시작해서 이전 숫자보다 크면 두개의 차이를 계속 더해나가면 문제에서 의도하는 해를 구 할 수 있죠. 문제에서 몇일에사서 가장 비싼일에 판다고 했지만 그 차이는 하루하루의 차이를 더한것과 같기 때문이죠 그래서 문제는 아래와 같이 풀 수 있습니다. class Solution { public int maxProfit(int[] prices) { int r = 0; for(int i=1; i prices[i-1]) r += prices[i] - prices[i-1]; retu..
LeetCode 30 Day Challenge 4일차 입니다. 문제 이름은 Move Zeroes - 문제 문제는 숫자 배열이 주어지고 in-place로 옮겨야 합니다. 함수를 call by reference 로 해결해야 한다는 의미 입니다. 주어진 변수 nums안의 데이터를 옮겨 해결한다는 의미 입니다. - 풀이 class Solution { public void moveZeroes(int[] nums) { int temp = 0, zeroCount = 0; if(nums[0] == 0) zeroCount++; for(int i=1; i
30일 챌린지 9일 차 문제입니다. Backspace String Compare - 문제 : - 풀이 : class Solution { public boolean backspaceCompare(String S, String T) { return convert(S).equals(convert(T)); } public String convert(String text) { int count = 0; StringBuilder new_text = new StringBuilder(); for(int i=text.length()-1; i>=0; i--) { if(text.charAt(i) == '#') { count++; }else { if(count > 0) { count--; }else { new_text.app..
30일 챌린지 Middle of the Linked List 문제 입니다. 문제 난이도는 Easy 입니다. - 문제 - 풀이 class Solution { public ListNode middleNode(ListNode head) { ListNode currentNode = head; int length = 1; while(currentNode.next != null){ length++; currentNode = currentNode.next; } int count = length/2; currentNode = head; while(count!=0){ count--; currentNode = currentNode.next; } return currentNode; } } 이 문제는 최적화 되었는지 조금은 ..
- Total
- Today
- Yesterday
- k8s metrics-server
- react
- LeetCode 풀이
- numpy
- 30 Day LeetCode Challenge
- vscode
- 머신러닝
- 에라토스테네스
- LeetCode 알고리즘 공부
- 넘파이
- GPT서비스
- Java leetcode
- React 프로젝트 생성
- 노드
- GPTGOT
- k8s metrics-server running
- CHATGOT
- 지도학습
- Java
- Node
- Python
- Component
- 파이썬 numpy
- git
- LeetCode 30일 챌린지
- 리엑트
- LeetCode 5월 챌린지
- 파이썬
- 버츄얼스튜디오코드
- 퍼셉트론
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |