졸리다

졸리다

  • 분류 전체보기 (149)
    • TIL (16)
      • 자바 (7)
      • 웹 (6)
      • 자바스크립트 (3)
      • ETC (0)
    • 책 (15)
      • 객체지향의 사실과 오해 (7)
      • Http&Network Basic (3)
      • 스프링 부트와 AWS로 혼자 구현하는 웹 서비스 (5)
    • 강의 (22)
      • 실전 JSP (1)
      • 예제로 배우는 스프링 입문 (1)
      • 자바 스프링 프레임워크 (1)
      • 스프링 부트 개념과 활용 (11)
      • 생활코딩 (6)
      • JS Flow (2)
    • 프로그래머스 (96)
      • LEVEL 1 (29)
      • LEVEL 2 (37)
      • LEVEL 3 (3)
      • LEVEL 4 (1)
      • 카카오 (26)
  • 홈
  • 알고리즘
RSS 피드
로그인
로그아웃 글쓰기 관리

졸리다

컨텐츠 검색

태그

최근글

댓글

공지사항

아카이브

프로그래머스(96)

  • [프로그래머스] 쇠막대기

    import java.util.*; class Solution { public int solution(String arrangement) { int answer = 0; Stack bracket = new Stack(); for(int i=0; i

    2020.03.31
  • [프로그래머스] [1차] 다트게임

    import java.util.*; class Solution { public int solution(String dartResult) { int answer = 0; int flag = 0; int count =0; List strList = new ArrayList(); int[] score = new int[3]; for(int i=2; i=0 && dartResult.charAt(i)-'0'

    2020.03.31
  • [프로그래머스] 문자열압축

    import java.util.*; class Solution { public int solution(String s) { int answer = s.length(); for(int i=0; i

    2020.03.30
  • [프로그래머스] 다리를 지나는 트럭

    import java.util.*; class Solution { class Truck{ int weight; int enterTime; Truck(int weight, int enterTime){ this.weight = weight; this.enterTime = enterTime; } } public int solution(int bridge_length, int weight, int[] truck_weights) { int answer = 0; int accumulateWeight = 0; Queue bridge = new LinkedList(); Queue waiting = new LinkedList(); for(int i=0; i

    2020.03.30
  • [프로그래머스] 최솟값 만들기

    import java.util.*; class Solution { public int solution(int []A, int []B) { int answer = 0; Arrays.sort(A); Arrays.sort(B); for(int i=0 ; i

    2020.03.28
  • [프로그래머스] 최댓값과 최솟값

    import java.util.*; class Solution { public String solution(String s) { String answer = ""; String[] temp = s.split(" "); int[] numlist = new int[temp.length]; for(int i=0; i

    2020.03.28
1 ··· 11 12 13 14 15 16
티스토리
© 2018 TISTORY. All rights reserved.

티스토리툴바