9일차 예문The renowned expert in nutrition introduced a high-quality, nutritious package at the keynote, which thrilled the audience and inspired them to decorate their diets with innovative foods. Just in case anyone points out a minor issue, feel free to address it promptly.As we prohibit unsafe practices and prepare for a favorable forecast, we must remember to feel free to take time to ensure th..
리트코드 - 289. Game of Life출처 - https://leetcode.com/problems/game-of-life/ 문제 설명위키피디아 기사에 따르면 "The Game of Life", 또는 간단히 "Life"로 불리는 이 셀룰러 오토마톤은 1970년에 영국의 수학자 존 호튼 콘웨이가 고안했습니다.게임판은 m x n 크기의 격자로 구성되어 있으며, 각 셀은 초기 상태인 살아있음(1로 표현됨)과 죽음(0으로 표현됨) 중 하나를 가집니다. 각 셀은 다음과 같은 네 가지 규칙을 사용하여 그것의 8개의 이웃 셀(수평, 수직, 대각선)과 상호작용합니다(위키피디아 기사에서 발췌):살아있는 셀이 두 개 미만의 살아있는 이웃을 가지고 있다면, 과소인구로 인해 죽습니다.살아있는 셀이 두 개 또는 세 개의 ..
8일차 예문The outgoing host welcomed the enthusiastic attendee, offering them a unique souvenir as a reward for their loyal support and recognizing their remarkable talent in the culinary arts. During the anniversary celebration, a representative of the organization gave a comprehensive report on the recent construction project, highlighting the need for practical alternatives and reminding everyone..
리트코드 - 128. Longest Consecutive Sequence출처 - https://leetcode.com/problems/longest-consecutive-sequence/ 문제 설명정렬되지 않은 정수 배열이 주어지면 가장 긴 연속 요소 시퀀스의 길이를 반환합니다.O(n) 시간에 실행되는 알고리즘을 작성해야 합니다. 풀이코드class Solution { public int longestConsecutive(int[] n) { Set set = new HashSet(); for (int i = 0; i 코드설명시간복잡도 O(n) 시간 내에 연속하는 가장 긴 수를 찾아야 한다.단순히 하나씩 반복문을 돌려서 찾기엔 O(n * n)번이 걸릴 것이다. 그럼 Arrays..
도커는 환경의 제약 없이 어디서나 동일하게 동작하도록 하는 오픈소스 컨테이너 기술입니다.컨테이너 기술은 뭐고 왜 환경의 제약을 받지 않는 것이 필요할까요?기존의 방식기존에는 한 대의 서버에서 한 개의 어플리케이션을 운영하거나 혹은 여러개의 어플리케이션을 운영했습니다.이런 방식의 경우 각각의 애플리케이션이 사용하는 리소스를 제어하기 힘든 문제가 있습니다.전체를 같이 사용하기 때문에 여분의 리소스가 남아도 활용할 수 없고, 특정 애플리케이션이 리소스를 과도하게 점유해서 전체 서버가 중단되면 다른 애플리케이션도 같이 중단되는 문제가 발생할 수 있습니다.Virtual Machine이를 극복하기 위해 가상머신이 도입되게 되었는데요.한 대의 서버에서 여러개의 운영체제를 실행시키고, 이 운영체제 안에서 각각의 어플리..
7일차 예문Interested in fascinating local events and influenced by a desire to help, the management decided to hire a catering company , advertise a luncheon for charity, and attract a couple of celebrities from out of town to attend.After a significant mix-up in the booking system and flexible fee structures, the event was canceled at the last-minute, forcing the company to issue refundable amounts..