당니의 블로그

당니의 블로그

  • 분류 전체보기 (191)
    • Project (3)
      • makeMe (0)
      • todolist (3)
    • 기타 (4)
      • 경험 기록 (2)
      • 트러블슈팅 (0)
    • Coding Test (63)
      • 백준 (32)
      • 프로그래머스 (31)
    • CS (21)
      • 운영체제(OS) (0)
      • 네트워크 (2)
      • 데이터베이스(DB) (1)
    • BackEnd (12)
      • Spring & Spring Boot (10)
      • Spring Data JPA (2)
    • Tool (3)
      • Git & Github (3)
    • 언어(Language) (44)
      • c++ (6)
      • Javascript (24)
      • JAVA (14)
    • FrontEnd & Mobile (33)
      • HTML & CSS (13)
      • React (15)
      • Flutter (5)
    • Cloud & Infra (2)
      • 도커(Docker) (2)
  • 홈
  • 태그
  • 방명록
RSS 피드
로그인
로그아웃 글쓰기 관리

당니의 블로그

컨텐츠 검색

태그

ㄹ flutter#클론코딩

최근글

댓글

공지사항

아카이브

Coding Test(63)

  • [Python] A×B

    a, b = map(int, input().split())print(a*b)

    2024.07.17
  • [Python] A-B

    a, b = map(int, input().split())print(a-b)

    2024.07.17
  • [Python] A+B

    a, b = map(int, input().split())print(a+b)

    2024.07.17
  • [Python] Hello World

    print('Hello World!')

    2024.07.17
  • [java] 프로그래머스 문자열 반복해서 출력하기 / .repeat()

    [나의 풀이] import java.util.Scanner; public class Solution { public static void main(String[] args) { Scanner sc = new Scanner(System.in); String str = sc.next(); int n = sc.nextInt(); for(int i = 0; i < n; i++) { System.out.print(str); } } } [다른 사람의 풀이] import java.util.Scanner; public class Solution { public static void main(String[] args) { Scanner sc = new Scanner(System.in); String str = sc.ne..

    2024.04.10
  • [백준] JAVA 10988번 오류 해결

    [첫 번째 시도] import java.io.*; import java.util.Arrays; public class Main { public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); //단어 입력받기 String str = br.readLine(); //문자 배열 생성하기 char[] chArr = str.toCharArray(); int check = 0; //팰린드롬 확인 for(int i = 0; i < (str.length() / 2); i++) { if(chArr[i] == chArr[str.length() -..

    2024.03.14
이전
1 ··· 3 4 5 6 7 8 9 ··· 11
다음
티스토리
© 2018 TISTORY. All rights reserved.

티스토리툴바