일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- DB
- microservices
- job
- servlet
- MSA
- 웹개발자
- sql
- MVC
- mysql
- Bambino
- two pointers
- jvm메모리구조
- SpringFramework
- html
- coding test
- 밤비노
- 리액트프로젝트
- 웹개발기초
- 안드로이드
- CSS
- C
- jsp
- msa개념
- 데이터베이스
- 웹개발
- BCIT
- 코드잇
- Java
- 자바
- Programming
- Today
- Total
목록분류 전체보기 (118)
초보 개발자의 기록
Sort Colors problemStatementGiven an array, colors, which contains a combination of the following three elements:0 (representing red)1 (representing white)2 (representing blue)Sort the array in place so that the elements of the same color are adjacent, with the colors in the order of red, white, and blue. To improve your problem-solving skills, do not utilize the built-in sort function.Constrain..
Remove Nth Node from End of List ProblemStatementGiven a singly linked list, remove the n^th node from the end of the list and return its head.ConstraintsThe number of nodes in the list is k.1≤1≤ k ≤10^3−10^3≤ Node.data ≤10^31≤ n ≤ kApproaches1. Set two pointers, right and left, at the head of the linked list.2. Move the right pointer n steps forward.3. Move both the right and left pointers forw..
3Sum ProblemStatementGiven an integer array nums, find and return all unique triplets [nums[i], nums[j], nums[k]], where the indexes satisfy i≠j, i≠k, and j≠k, and the sum of the elements nums[i] + nums[j] + nums[k] == 0.Constraints3≤ nums.length ≤500−10^3≤ nums[i] ≤10^3Approaches* All numbers in the array are positive, so it is impossible to find any combination of three numbers that addes up t..
Valid Palindrome ProblemStatementWrite a function that takes a string, s, as an input and determines whether or not it is a palindrome. Constraints1≤1≤ s.length ≤2×10^5≤2×10^5The string s will not contain any white space and will only consist of ASCII characters(digits and letters).문자열 s의 길이가 최소 1에서 최대 200000까지 가능.문자열의 길이는 최소 1 이상이므로, 빈 문자열은 들어올 수 없음200,000까지 가능하므로, 시간 복잡도가 너무 크면 성능이 떨어질 수 있음O(n..
Two pointersVersatile techinique used in problem-solving to efficiently traverse or manipulate sequential data structures, such as arrays or linked lists.It involves maintaining two pointers that traverse the data structure in a coordinated manner, typically starting from different positions or moving in opposite directions. These pointers dynamically adjust based on specitic conditions or crite..
Object-oriented design (OOD) Object-oriented methodology to design a computional problem and its solution based on the consepts of objects and models. OOD works as a component of the object-oriented programming (OOP) lifecycle. A typical object-oriented design (ODD) interview is hard because the interviewer expects interviewee to design a near-perfect solution to the given problem that covers al..
The contents of this posting is a summary to memorize the information of BCIT COMM 1116 and 2216 Business Communications. Source from WRITING IN THE TECHNICAL FIELDS - A Practival Guide wirtten by Thorsten Ewald 1. How to craft scannable,clear, descriptive résumés 2. How to wirte concise, persuasive application letters 3. How to find job openings to which to apply in the first place. Finding Job..
The contents of this posting is a summary to memorize the information of BCIT COMM 1116 and 2216 Business Communications. Source from WRITING IN THE TECHNICAL FIELDS - A Practival Guide wirtten by Thorsten Ewald 1. How to craft scannable,clear, descriptive résumés 2. How to wirte concise, persuasive application letters 3. How to find job openings to which to apply in the first place. Application..
Variables Variables are containers for storing data vaules. int: Stores integers without decimals float: Stores floating point numbers with decimals char: Stores single characters. Char values are surrounded by single quotes Declaring (Creating) Variables To create a variable,specify the type and assign it a value type variableName = value; The equal sign is used to assign a value to the variabl..