coding with cong

  • 홈
  • 방명록
  • 태그
  • 카테고리

intstream 3

[programmers] JAVA_0단계 카운트 업

카운트 업  풀이- IntStream을 이용하는 방법import java.util.stream.IntStream;class Solution { public int[] solution(int start, int end) { return IntStream.rangeClosed(start, end).toArray(); }}IntStream.rangeClosed(start, end) : start부터 end 포함의 정수를 생성 - for문을 이용하는 방법class Solution { public int[] solution(int start, int end) { int[] answer = new int[end-(start-1)]; for(..

코딩테스트 2024.06.21

[programmers] JAVA_0단계 짝수는 싫어요

짝수는 싫어요 풀이- idx를 이용하여 for문으로 배열을 채우는 방법class Solution { public int[] solution(int n) { int[] answer = new int[(n + 1) / 2]; int idx = 0; for(int i = 1; i  - ⭐ IntStream을 이용하는 방법import java.util.stream.IntStream;class Solution { public int[] solution(int n) { return IntStream.rangeClosed(0, n) .filter(e -> e % 2 != 0) .toArra..

카테고리 없음 2024.06.20

[programmers] JAVA_0단계 등차수열의 특정한 항만 더하기

등차수열의 특정한 항만 더하기 풀이- for문을 사용한 방법Class Solution { public int solution(int a, int d, boolean[] included) { int answer = 0; for(int i = 0; i  - ⭐ IntStream을 사용한 방법 import java.util.stream.IntStream;class Solution { public int solution(int a, int d, boolean[] included) { return IntStream.range(0, included.length) // 1 .map(idx -> included[idx] ? a +..

코딩테스트 2024.06.18
이전
1
다음
더보기
프로필사진

coding with cong

콩의 작은 개발 블로그

  • 분류 전체보기 (441)
    • JAVA (70)
      • java (41)
      • java 코드 (29)
    • DB (63)
      • MySQL Workbench (12)
      • 명령프롬프트 - mysql (51)
    • HTML.CSS.JS (169)
      • html (24)
      • css (18)
      • JS (127)
    • JSP (52)
      • JSP (52)
    • Spring (40)
      • Spring-eclipse (20)
      • Spring (2)
      • Springboot-Intellij (18)
    • GIT (6)
      • GIT (4)
      • GIT ERROR (2)
    • Node.js (3)
    • 코딩테스트 (32)
    • 컴활 1급 실기 (3)

Tag

while, select, create, Trigger, intstream, if, mysql, for, Class, join, substring, concat, Update, modify, Integer.parseInt, Table, is not null, indexOf, random, erd,

최근글과 인기글

  • 최근글
  • 인기글

최근댓글

공지사항

페이스북 트위터 플러그인

  • Facebook
  • Twitter

Archives

Calendar

«   2025/06   »
일 월 화 수 목 금 토
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 :
콩의 깃허브!

꾸준한 개발자가 되고 싶은 콩의 블로그입니다.

공재불사! 열심히 노력해봐요!

티스토리툴바