본문 바로가기
728x90

개발90

[프로그래머스 C++ Lv1] 같은 숫자는 싫어 안녕하십니까. Eun🦆입니다. 풀이법 입니다. 코딩테스트 연습 - 같은 숫자는 싫어 배열 arr가 주어집니다. 배열 arr의 각 원소는 숫자 0부터 9까지로 이루어져 있습니다. 이때, 배열 arr에서 연속적으로 나타나는 숫자는 하나만 남기고 전부 제거하려고 합니다. 단, 제거된 후 남은 programmers.co.kr #include #include using namespace std; vector solution(vector arr) { vector answer; // [실행] 버튼을 누르면 출력 값을 볼 수 있습니다. //cout 2022. 6. 6.
[프로그래머스 C++ Lv1] K번째수 안녕하십니까. Eun🦆입니다. 풀이법 입니다. 코딩테스트 연습 - K번째수 [1, 5, 2, 6, 3, 7, 4] [[2, 5, 3], [4, 4, 1], [1, 7, 3]] [5, 6, 3] programmers.co.kr #include #include #include using namespace std; vector solution(vector array, vector commands) { vector answer; for(int i=0;i 2022. 6. 6.
[프로그래머스 C++ Lv1] 완주하지 못한 선수 안녕하십니까. Eun🦆입니다. 풀이법 입니다. 코딩테스트 연습 - 완주하지 못한 선수 수많은 마라톤 선수들이 마라톤에 참여하였습니다. 단 한 명의 선수를 제외하고는 모든 선수가 마라톤을 완주하였습니다. 마라톤에 참여한 선수들의 이름이 담긴 배열 participant와 완주한 선수 programmers.co.kr #include #include using namespace std; string solution(vector participant, vector completion) { string answer; for(int i=0;i 2022. 6. 6.
[프로그래머스 C++ Lv1] 크레인 인형뽑기 게임 안녕하십니까. Eun🦆입니다. 풀이법 입니다. 코딩테스트 연습 - 크레인 인형뽑기 게임 [[0,0,0,0,0],[0,0,1,0,3],[0,2,5,0,1],[4,2,4,4,2],[3,5,1,3,1]] [1,5,3,5,1,2,1,4] 4 programmers.co.kr #include #include using namespace std; int solution(vector board, vector moves) { int answer = 0; //printf("%d", board[3][2]); // 세로, 가로 int v[moves.size()], k=0; for(int i=0;i 2022. 6. 6.
윈도우 Git 명령어 모음 안녕하십니까. Eun🦆입니다. 윈도우 Git 명령어 모음 정리입니다. cd CodingTest : CodingTest 폴더로 이동 git status : 현재 git 폴더 상태 git add . : 모든 파일 add 버퍼로 이동(. 위치에 별도 파일 지정 가능) git commit -m " add CodingTest" : m은 이름 생략 명령어, string 은 git에 표시되는 내용 git push origin master : master로 업로드( branch) git pull origin master : master에서 지정 파일로 다운로드 네이버 블로그 리뉴얼입니다. (https://blog.naver.com/unsuk1/221583415357) 2022. 5. 30.
[삼성 SW Expert Academy] 암호생성기 안녕하십니까. Eun🦆입니다. 7일차 암호생성기 저의 해답입니다. https://www.swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AV14uWl6AF0CFAYD SW Expert Academy SW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요! swexpertacademy.com https://github.com/harry217/SW-Expert-Academy/commit/129ae2ee4716229c32239535eaa4ada69f6602b9 Rename Password generator.cpp to 암호 생성기.cpp · harry217/SW-Expert-Academy@129ae2e printf(".. 2022. 5. 30.
728x90