Ikjo's Technology blog

  • 홈
  • Technology
  • Algorithm
  • WIL
  • Retrospection
  • 방명록

Algorithm/LeetCode 8

[LeetCode - 83] Remove Duplicates from Sorted List - Java

문제 설명 문제 Given the head of a sorted linked list, delete all duplicates such that each element appears only once. Return the linked list sorted as well. 입출력 예시 Input: head = [1,1,2] Output: [1,2] Input: head = [1,1,2,3,3] Output: [1,2,3] 제한사항 The number of nodes in the list is in the range [0, 300]. -100

Algorithm/LeetCode 2022.01.12

[LeetCode - 7] Reverse Integer - Java

문제 설명 문제 Given a signed 32-bit integer x, return x with its digits reversed. If reversing x causes the value to go outside the signed 32-bit integer range [-231, 231 - 1], then return 0. Assume the environment does not allow you to store 64-bit integers (signed or unsigned). 입출력 예시 Input: x = 123 Output: 321 Input: x = -123 Output: -321 Input: x = 120 Output: 21 제한사항 -2^31

Algorithm/LeetCode 2022.01.12

[LeetCode - 1] Two Sum - Java

문제 설명 Two Sum - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 풀이 : Success 소스 코드 class Solution { public int[] twoSum(int[] nums, int target) { int len = nums.length; for (int i = 0; i < len; i++) { for (int j = i+1; j < len; j++) { if(target == nums[i] + nums[j]) return new int[..

Algorithm/LeetCode 2022.01.12
1 2
더보기
프로필사진

공기업에 재직했었지만 성장에 대한 욕심으로 현재는 백엔드 개발자로서 제2의 인생을 살고 있습니다.

  • 분류 전체보기 (381)
    • Technology (46)
      • Web (6)
      • Java (23)
      • Spring (3)
      • MySQL (5)
      • JPA (2)
      • Computer Architecture (3)
      • Git (1)
      • JavaScript (3)
    • Experience (13)
      • 2021's Experience (4)
      • 2022's Experience (4)
      • 2023's Experience (4)
      • 2024's Experience (1)
    • Algorithm (124)
      • Basic (10)
      • Programmers (48)
      • BOJ (51)
      • LeetCode (8)
      • HackerRank (4)
      • CodeUp (3)
    • Weekly I Learned (78)
      • 2022's(7. ~ 12.) WIL (26)
      • 2023's(1. ~ 12.) WIL (52)
    • 2022 Masters Course (120)
      • CS 10 Course (25)
      • Web Backend Course (35)
      • Project Course (60)

Tag

ssafy, 백준, 자바, 프로그래머스, 마스터즈 코스, Transaction, BOJ, 성장, 회고, 개발자, jvm, MYSQL, 코드스쿼드, Weekly I learned, 접근지시자, Weelky I iearned, Spring, java, wil, 애노테이션,

최근글과 인기글

  • 최근글
  • 인기글

최근댓글

공지사항

페이스북 트위터 플러그인

  • Facebook
  • Twitter

Archives

Calendar

«   2025/11   »
일 월 화 수 목 금 토
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

방문자수Total

  • Today :
  • Yesterday :

Copyright © Kakao Corp. All rights reserved.

  • 깃허브

티스토리툴바