본문 바로가기

Python_Matter/Solve

(117)
Python Learn the basics Quiz 69 Q> I start to feed one of the pigeons. (나는 비둘기 중 하나를 먹이기 시작한다.) A minute later two more fly by and a minute after that another 3. (1 분 후 2 분이 지나면 3 분이 지나고 1 분 후에 다시 날아간다.) Then 4, and so on (Ex: 1+2+3+4+...). (그 다음 4 분 (예 : 1 + 2 + 3 + 4 + ...).) One portion of food lasts a pigeon for a minute, but in case there's not enough food for all the birds, the pigeons who arrived first ate first. (음식의 일..
Python Learn the basics Quiz 68 Q> Almost everyone in the world knows about the ancient game Chess and has at least a basic understanding of its rules. (세계의 거의 모든 사람들이 고대 게임 체스에 대해 알고 있으며 최소한 규칙을 이해하고 있습니다.) It has various units with a wide range of movement patterns allowing for a huge number of possible different game positions (for example Number of possible chess games at the end of the n-th plies.) For this mission, we wi..
Python Learn the basics Quiz 67 Q> A median is a numerical value separating the upper half of a sorted array of numbers from the lower half. (중앙값은 정렬 된 숫자 배열의 위쪽 절반을 아래쪽 절반에서 분리하는 숫자 값입니다.) In a list where there are an odd number of entities, the median is the number found in the middle of the array. (홀수의 엔티티가있는 목록에서 중앙값은 배열의 중간에있는 번호입니다.) If the array contains an even number of entities, then there is no single middle value, ..
Python Learn the basics Quiz 66 Q> Roman numerals come from the ancient Roman numbering system. (로마 숫자는 고대 로마 넘버링 시스템에서 왔습니다.) They are based on specific letters of the alphabet which are combined to signify the sum (or, in some cases, the difference) of their values. (그들은 알파벳의 특정 문자를 기반으로하여 그 값의 합 (또는 어떤 경우에는 차이)을 나타냅니다) The first ten Roman numerals are: (처음 10 개의 로마 숫자는 다음과 같습니다.) I, II, III, IV, V, VI, VII, VIII, IX, and X...
Python Learn the basics Quiz 65 Q> Let's continue examining words. (단어를 계속해서 살펴 봅시다.) You are given two string with words separated by commas. (단어가 쉼표로 구분 된 두 개의 문자열이 제공됩니다.) Try to find what is common between these strings. (이 문자열들 사이에 공통점이 있는지 찾으십시오.) The words are not repeated in the same string. (단어는 동일한 문자열에서 반복되지 않습니다.) Your function should find all of the words that appear in both strings. (함수는 두 문자열에 나타나는 모든 단어를 찾아야합니다..
Python Learn the basics Quiz 64 Q> Over six years ago, in December 1989, I was looking for a "hobby" programming project that would keep me occupied during the week around Christmas. (6 년 전인 1989 년 12 월, 저는 크리스마스 주변의 한 주 동안 계속 저를 지켜줄 "취미"프로그래밍 프로젝트를 찾고있었습니다.) My office (a government-run research lab in Amsterdam) would be closed, but I had a home computer, and not much else on my hands. 내 사무실 (암스테르담에서 정부가 운영하는 연구실)은 폐쇄 될 것이지만,..
Python Learn the basics Quiz 63 Q> Tic-Tac-Toe, sometimes also known as Xs and Os, is a game for two players (X and O) who take turns marking the spaces in a 3×3 grid. (Tic-Tac-Toe는 때로는 Xs와 Os라고도하며, 2 명의 플레이어 (X와 O)가 3 × 3 그리드에서 공백을 표시하는 게임입니다.) The player who succeeds in placing three respective marks in a horizontal, vertical, or diagonal rows (NW-SE and NE-SW) wins the game. (수평, 수직 또는 대각선 (NW-SE 및 NE-SW)에 3 개의 각 마크를 넣으면 성공..
Python Learn the basics Quiz 62 Q> Stephan has a friend who happens to be a little mechbird. (Stephan에는 작은 mechbird 인 우연히 친구가있다) Recently, he was trying to teach it how to speak basic language. (최근 그는 기본 언어를 말하는 법을 가르치려고 노력하고있었습니다.) Today the bird spoke its first word: "hieeelalaooo". (오늘 새는 그것의 첫번째 낱말을 말했다 : "hieeelalaooo".) This sounds a lot like "hello", but with too many vowels. (이것은 "hello"와 비슷하지만 모음이 너무 많습니다.) Stephan as..