전체 글 (267) 썸네일형 리스트형 SIPE 개발자 컨퍼런스 다섯 번째 사담콘 후기 백만년만에 개발자 컨퍼런스를 참여하다진짜 어언 몇년 만인가.. 요즘 열리는 개발자 행사는 추첨 형태가 많아서 가기가 어려웠는데(진짜 매번 떨어져서 못가는 거 서럽고 치사하다구ㅠ) 전날 우연히 SIPE 라는 개발자 커뮤니티에서 열리는 컨퍼런스를 알게되었다.요즘 시대의 주니어들은 어떻게 개발하는지도 궁금하고 개발 열정도 끌어올리는 겸 다녀왔다 ! https://5th-sadamcon.sipe.team/ SIPE 다섯 번째 컨퍼런스 - 사담콘 야호, 파라미터나 줘야지2026년 7월 11일 토요일, 서울 마포구 마포대로 122 5층 박병원홀에서 열리는 SIPE 다섯 번째 컨퍼런스 사담콘에 참여하세요.5th-sadamcon.sipe.team 컨퍼런스 슬쩍 구경하기 집에서 멀지 않았던 프론트원에서 열려서 후딱 다.. [LeetCode] 19. Remove Nth Node From End of List (Java) 문제https://leetcode.com/problems/remove-nth-node-from-end-of-list/description/?envType=problem-list-v2&envId=oizxjoit Remove Nth Node From End of List - LeetCodeCan you solve this real interview question? Remove Nth Node From End of List - Given the head of a linked list, remove the nth node from the end of the list and return its head. Example 1: [https://assets.leetcode.com/uploads/2020/10/03.. [LeetCode] 125. Valid Palindrome (Java) 문제https://leetcode.com/problems/valid-palindrome/?envType=problem-list-v2&envId=oizxjoit 문자열의 문자만(A-Z, a-z, 0-9 만 허용) 추출해 앞뒤로 읽어도 같은 문자(회문)인지 판별한다. 예를 들어, 아래 예시에서 영숫자만 뽑으면 'wasitacaroracatisaw' 인데 반 접으면 동일 문자이므로 true 이다.Input: s = "Was it a car or a cat I saw?"Output: true 풀이class Solution { public boolean isPalindrome(String s) { s = s.replaceAll("[^a-zA-Z0-9]", "").toLowerCase(); .. [LeetCode] 143. Reorder List (Java) 문제https://leetcode.com/problems/reorder-list/description/?envType=problem-list-v2&envId=oizxjoit Reorder List - LeetCodeCan you solve this real interview question? Reorder List - You are given the head of a singly linked-list. The list can be represented as: L0 → L1 → … → Ln - 1 → Ln Reorder the list to be on the following form: L0 → Ln → L1 → Ln - 1 → L2leetcode.com ListNode 객체 형태로 서로 연결되어있고 양끝.. [LeetCode] 133. Clone Graph (Java) 문제https://leetcode.com/problems/clone-graph/description/?envType=problem-list-v2&envId=oizxjoit Clone Graph - LeetCodeCan you solve this real interview question? Clone Graph - Given a reference of a node in a connected [https://en.wikipedia.org/wiki/Connectivity_(graph_theory)#Connected_graph] undirected graph. Return a deep copy [https://en.wikipedia.org/wiki/Object_copyleetcode.com Node 객체로 이루.. [LeetCode] 295. Find Median from Data Stream (Java) 문제https://leetcode.com/problems/find-median-from-data-stream/description/?envType=problem-list-v2&envId=oizxjoit Find Median from Data Stream - LeetCodeCan you solve this real interview question? Find Median from Data Stream - The median is the middle value in an ordered integer list. If the size of the list is even, there is no middle value, and the median is the mean of the two middle values. .. [LeetCode] 128. Longest Consecutive Sequence (Java) 문제https://leetcode.com/problems/longest-consecutive-sequence/description/?envType=problem-list-v2&envId=oizxjoit Longest Consecutive Sequence - LeetCodeCan you solve this real interview question? Longest Consecutive Sequence - Given an unsorted array of integers nums, return the length of the longest consecutive elements sequence. You must write an algorithm that runs in O(n) time. Example 1: .. [코드트리] 흰검 칠하기 (Java) 문제일직선으로 무한히 나열된 타일이 있습니다. 아무 타일에서 시작하여 N번의 명령에 걸쳐 움직입니다. 명령은 x L, x R 형태로만 주어지며, x L의 경우 왼쪽으로 이동하면서 현재 위치 타일포함 총 x칸의 타일을 흰색으로 연속하게 칠하고, x R의 경우 오른쪽으로 이동하면서 현재 위치 타일포함 총 x칸의 타일을 검은색으로 연속하게 칠함을 뜻합니다. 각 명령 이후에는 마지막으로 칠한 타일 위치에 서있는다고 가정합니다. 타일의 색은 덧칠해지면 마지막으로 칠해진 색으로 바뀌는데, 만약 타일 하나가 순서 상관없이 흰색과 검은색으로 각각 두 번 이상 칠해지면 회색으로 바뀌고 더 이상 바뀌지 않습니다. 모든 명령을 실행한 뒤의 흰색, 검은색, 회색의 타일 수를 각각 출력하는 프로그램을 작성해보세요. 첫 번째 줄.. 이전 1 2 3 4 ··· 34 다음