일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- 더현대서울 맛집
- 프로그래머스
- 맥북
- programmers
- Docker
- 백준
- 편스토랑 우승상품
- AI 경진대회
- Real or Not? NLP with Disaster Tweets
- ChatGPT
- ubuntu
- leetcode
- gs25
- 파이썬
- 프로그래머스 파이썬
- 데이콘
- Kaggle
- 금융문자분석경진대회
- dacon
- github
- 자연어처리
- 캐치카페
- hackerrank
- PYTHON
- Baekjoon
- Git
- 편스토랑
- 코로나19
- SW Expert Academy
- 우분투
- Today
- Total
목록
반응형
전체 글 (1653)
솜씨좋은장씨
코딩 1일 1문제! 오늘의 문제는 백준의 평균 중앙값 문제 입니다. 5691번: 평균 중앙값 문제 세 정수 A, B, C의 평균은 (A+B+C)/3이다. 세 정수의 중앙값은 수의 크기가 증가하는 순서로 정렬했을 때, 가운데 있는 값이다. 두 정수 A와 B가 주어진다. 이때, A, B, C의 평균과 중앙값을 같게 만드는 www.acmicpc.net 👨🏻💻 코드 ( Solution ) def average_middle_num_problem(A, B): return A - (B-A) if __name__ == "__main__": while True: A, B = map(int, input().split()) if A == 0 and B == 0: break print(average_middle_num_pr..
코딩 1일 1문제! 오늘의 문제는 백준의 Yangjojang of The Year 입니다. 11557번: Yangjojang of The Year 입학 OT때 누구보다도 남다르게 놀았던 당신은 자연스럽게 1학년 과대를 역임하게 되었다. 타교와의 조인트 엠티를 기획하려는 당신은 근처에 있는 학교 중 어느 학교가 술을 가장 많이 먹는지 www.acmicpc.net 👨🏻💻 코드 ( Solution ) def yangjojang_of_the_year(school_list): return sorted(school_list, key=lambda x: int(x[1]))[-1][0] if __name__ == "__main__": for _ in range(int(input())): school_list = [] ..
코딩 1일 1문제! 오늘의 문제는 백준의 Body Mass Index 입니다. 6825번: Body Mass Index The Body Mass Index (BMI) is one of the calculations used by doctors to assess an adult’s health. The doctor measures the patient’s height (in metres) and weight (in kilograms), then calculates the BMI using the formula BMI = weight/(height × height). www.acmicpc.net 👨🏻💻 코드 ( Solution ) def get_bmi(weight, height): return weight..
코딩 1일 1문제! 오늘의 문제는 백준의 A+B 입니다. 26711번: A+B Mamy dla was zadanie stare jak świat, ale w nieco odświeżonej wersji. Polega ono na dodaniu do siebie dwóch liczb, które tym razem mogą być dość duże. Gdyby tylko na Potyczkach Algorytmicznych było jakieś narzędzie, które pomaga radzić sobie www.acmicpc.net 👨🏻💻 코드 ( Solution ) def A_plus_B(A, B): return A + B if __name__ == "__main__": A = int(input()..
코딩 1일 1문제! 오늘의 문제는 백준의 Copier 입니다. 26574번: Copier Your copier broke down last week, and you need to copy a list of numbers for a class project due tomorrow! Luckily, you can use your computer to copy the numbers for you. Given a list of numbers, each on their own line, print out the number, a space, and t www.acmicpc.net 👨🏻💻 코드 ( Solution ) def copier(number_list): for number in number_list: pr..
코딩 1일 1문제! 오늘의 문제는 백준의 Dedupe 입니다. 5357번: Dedupe Redundancy in this world is pointless. Let’s get rid of all redundancy. For example AAABB is redundant. Why not just use AB? Given a string, remove all consecutive letters that are the same. www.acmicpc.net 👨🏻💻 코드 ( Solution ) def dedupe(dup_string): dedupe_string = [dup_string[0]] for word in dup_string[1:]: if word != dedupe_string[-1]: dedupe_..
코딩 1일 1문제! 오늘의 문제는 백준의 Reverse 입니다. 26546번: Reverse The first line will contain a single integer n that indicates the number of data sets that follow. Each data set will be one line with a string and two integers i and j, separated by spaces. The first int, i, is the start index of the substring to be taken www.acmicpc.net 👨🏻💻 코드 ( Solution ) def reverse(string, start_idx, end_idx): return "".j..
코딩 1일 1문제! 오늘의 문제는 백준의 Hook 입니다. 10189번: Hook Print out the word Hook as shown below. www.acmicpc.net 👨🏻💻 코드 ( Solution ) def hook(): return """# # #### #### # # #### # # # # # # #### # # # # # # # # #### #### # #""" if __name__ == "__main__": print(hook()) GitHub - SOMJANG/CODINGTEST_PRACTICE: 1일 1문제 since 2020.02.07 1일 1문제 since 2020.02.07. Contribute to SOMJANG/CODINGTEST_PRACTICE developmen..