본문 바로가기
728x90
반응형

분류 전체보기273

프로그래머스 - 아이스 아메리카노 class Solution { public int[] solution(int money) { int[] answer = new int[2]; answer[0] = money/5500; answer[1] = money%5500; return answer; } } 2023. 2. 23.
[Git] 깃허브에 프로젝트 올리기 1. New를 눌러서 새로운 레포지토리를 생성한다. 2. 원하는 레포지토리 이름을 입력하고 ‘Create repositry’를 눌러 레포지토리 생성 (※Add a README file 체크하지 말것 ※) 3. 생성하면 이러한 창이 나옴. 4. 인텔리제이 들어가서 프로젝트 생성 5. Terminal 클릭 6. git init 입력 git init은 현재 디렉토리 기준으로 git 저장소를 생성해준다. ex) 나의 현재 디렉토리 위치는 “C:\Users\Hoon\Desktop\untitled3” 이므로 untitled3 디렉토리안에 git 저장소가 생성. 7. git add . 입력 “git add”은 다음 변경(commit)을 기록할 때까지 변경분 모아놓는 작업이다. git add . // 전체 add (점.. 2023. 2. 22.
프로그래머스 - 삼각형의 완성조건 (1) class Solution { public int solution(int[] sides) { int answer = 0; if(sides[0]>sides[1] && sides[0] > sides[2]){ answer = sides[0] sides[0] && sides[1] > sides[2]){ answer = sides[1] < sides[0] + sides[2] ? 1 : 2; }else{ answer = sides[2] < sides[0] + sides[1] ? 1 : 2; } return answer; } } 2023. 2. 22.
프로그래머스 - 문자 반복 출력하기 class Solution { public String solution(String my_string, int n) { String answer = ""; for(int i=0; i 2023. 2. 22.
728x90
반응형