728x90
반응형

코테 노트 247

Level 2 N개의 최소공배수 Python3

programmers.co.kr/learn/courses/30/lessons/12953 코딩테스트 연습 - N개의 최소공배수 두 수의 최소공배수(Least Common Multiple)란 입력된 두 수의 배수 중 공통이 되는 가장 작은 숫자를 의미합니다. 예를 들어 2와 7의 최소공배수는 14가 됩니다. 정의를 확장해서, n개의 수의 최소공배 programmers.co.kr 최종 코드 GitHub github.com/hwayeon351/Programmers-Algorithms hwayeon351/Programmers-Algorithms 프로그래머스 코딩테스트 풀이. Contribute to hwayeon351/Programmers-Algorithms development by creating an acc..

백준 14502 연구소 C++

https://www.acmicpc.net/problem/14502 14502번: 연구소 인체에 치명적인 바이러스를 연구하던 연구소에서 바이러스가 유출되었다. 다행히 바이러스는 아직 퍼지지 않았고, 바이러스의 확산을 막기 위해서 연구소에 벽을 세우려고 한다. 연구소는 크 www.acmicpc.net 최종 풀이 GitHub github.com/hwayeon351/BEAKJOON-Algorithms hwayeon351/BEAKJOON-Algorithms 백준 코딩테스트 풀이. Contribute to hwayeon351/BEAKJOON-Algorithms development by creating an account on GitHub. github.com // // main.cpp // BJ14502 // ..

백준 14503 로봇 청소기 C++

https://www.acmicpc.net/problem/14503 14503번: 로봇 청소기 로봇 청소기가 주어졌을 때, 청소하는 영역의 개수를 구하는 프로그램을 작성하시오. 로봇 청소기가 있는 장소는 N×M 크기의 직사각형으로 나타낼 수 있으며, 1×1크기의 정사각형 칸으로 나누어 www.acmicpc.net 최종 코드 GitHub github.com/hwayeon351/BEAKJOON-Algorithms hwayeon351/BEAKJOON-Algorithms 백준 코딩테스트 풀이. Contribute to hwayeon351/BEAKJOON-Algorithms development by creating an account on GitHub. github.com // // main.cpp // BJ1..

Level 2 JadenCase 문자열 만들기 Python3

https://programmers.co.kr/learn/courses/30/lessons/12951?language=python3 코딩테스트 연습 - JadenCase 문자열 만들기 JadenCase란 모든 단어의 첫 문자가 대문자이고, 그 외의 알파벳은 소문자인 문자열입니다. 문자열 s가 주어졌을 때, s를 JadenCase로 바꾼 문자열을 리턴하는 함수, solution을 완성해주세요. 제한 조건 programmers.co.kr 최종 코드 def solution(s): i = 0 while i < len(s): if i==len(s)-1: return s if s[i] == " ": i += 1 s = s[:i] + s[i].upper() + s[i+1:].lower() else: if i == 0..

Level 2 행렬의 곱셈 Python3

https://programmers.co.kr/learn/courses/30/lessons/12949?language=python3 코딩테스트 연습 - 행렬의 곱셈 [[2, 3, 2], [4, 2, 4], [3, 1, 4]] [[5, 4, 3], [2, 4, 1], [3, 1, 1]] [[22, 22, 11], [36, 28, 18], [29, 20, 14]] programmers.co.kr 최종 코드 def solution(arr1, arr2): answer = [[0] * len(arr2[0]) for row in range(len(arr1))] for row in range(len(arr1)): for col in range(len(arr2[0])): sum = 0 for i in range(len..

백준 14889 스타트와 링크 C++

https://www.acmicpc.net/problem/14889 14889번: 스타트와 링크 예제 2의 경우에 (1, 3, 6), (2, 4, 5)로 팀을 나누면 되고, 예제 3의 경우에는 (1, 2, 4, 5), (3, 6, 7, 8)로 팀을 나누면 된다. www.acmicpc.net 최종 코드 GitHub https://github.com/hwayeon351/BEAKJOON-Algorithms/blob/main/BJ14889.cpp hwayeon351/BEAKJOON-Algorithms 백준 알고리즘 소스 코드 모음. Contribute to hwayeon351/BEAKJOON-Algorithms development by creating an account on GitHub. github.com..

SWEA 1952 [모의 SW 역량테스트] 수영장 C++

https://swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AV5PpFQaAQMDFAUq&categoryId=AV5PpFQaAQMDFAUq&categoryType=CODE SW Expert Academy SW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요! swexpertacademy.com 최종 코드 GitHub -> https://github.com/hwayeon351/SWEA-Algorithms/blob/main/SWEA1952.cpp GitHub - hwayeon351/SWEA-Algorithms: SWEA 알고리즘 소스 코드 모음 SWEA 알고리즘 소스 코드 모음. Contribute to hwa..

코테 노트/SWEA 2021.01.06
728x90
반응형