본문 바로가기

Ankiwoong

(1841)
Python Learn the basics Quiz 91 Q> When it comes to city planning it's import to understand the borders of various city structures. (도시 계획에 관해서는 다양한 도시 구조의 경계를 이해하는 것이 수입입니다.) Parks, lakes or living blocks can be represented as closed polygon and can be described using cartesian coordinates on a map . (공원, 호수 또는 살아있는 블록은 닫힌 다각형으로 표현할 수 있으며지도의 직교 좌표를 사용하여 설명 할 수 있습니다.) We need functionality to determine is a point (a building o..
Python Learn the basics Quiz 90 Q> An IP network is a set of routers that communicate routing information using a protocol. (IP 네트워크는 프로토콜을 사용하여 라우팅 정보를 전달하는 라우터 세트입니다.) A router is uniquely identified by an IP address. (라우터는 IP 주소로 고유하게 식별됩니다. ) In IPv4, an IP address consists of 32 bits, canonically represented as 4 decimal numbers of 8 bits each. The decimal numbers range from 0 (00000000) to 255 (11111111). (IPv4에서 IP 주소는 ..
Python Learn the basics Quiz 89 Q> Friday 13th or Black Friday is considered as unlucky day. (금요일 13 일 또는 검은 금요일은 불행한 날로 간주됩니다.) Calculate how many unlucky days are in the given year. (주어진 해에 얼마나 많은 불행한 날이 오는지 계산하십시오.) Find the number of Friday 13th in the given year. (해당 연도의 13 번째 금요일 수를 찾습니다.) Input: Year as an integer. (정수로 표시된 연도입니다.) Output: Number of Black Fridays in the year as an integer. (연중 흑인 금요일 수를 정수로 나타냅니다.) Exam..
Python Learn the basics Quiz 88 Q> For language training our Robots want to learn about suffixes. (언어 훈련을 위해 로봇은 접미사에 대해 배우고 싶습니다.) In this task, you are given a set of words in lower case. (이 작업에서는 소문자로 된 단어 집합이 제공됩니다.) Check whether there is a pair of words, such that one word is the end of another (a suffix of another). (한 단어가 다른 단어의 끝 (다른 접미사)과 같은 단어 쌍이 있는지 확인하십시오.) For example: {"hi", "hello", "lo"} -- "lo" is the end of ..
Python Learn the basics Quiz 87 Q> What is your favourite day of the week? (당신이 가장 좋아하는 요일은 무엇입니까?) Check if it's the most frequent day of the week in the year. (일년 중 가장 빈번한 요일인지 확인하십시오.) You are given a year as integer (e. g. 2001). (당신은 일년 정수로 주어진다 (예를 들면 2001 년).) You should return the most frequent day(s) of the week in that year. (그 해에 가장 빈번한 요일을 반환해야합니다.) The result has to be a list of days sorted by the order of days in..
Python Learn the basics Quiz 86 Q> Your mission is to convert the name of a function (a string) from the Python format (for example "my_function_name") into CamelCase ("MyFunctionName"), where the first char of every word is in uppercase and all words are concatenated without any intervening characters. (당신의 임무는 함수의 이름 (문자열)을 Python 형식 (예 : "my_function_name")에서 CamelCase ( "MyFunctionName")로 변환하는 것입니다. 여기서 모든 단어의 첫 번째 문자는 대문자..
Python Learn the basics Quiz 85 Q> Long numbers can be made to look nicer, so let’s write some code to do just that. (긴 숫자가 더 멋지게 보이도록 만들 수 있습니다. 그러기 위해 코드를 작성해 봅시다.) You should write a function for converting a number to string using several rules. (여러 규칙을 사용하여 숫자를 문자열로 변환하는 함수를 작성해야합니다.) First of all, you will need to cut the number with a given base (base argument; default 1000). (우선, 주어진 기본 (기본 인수, 기본 1000)으로 번호를 잘라야합니다.) ..
Python Learn the basics Quiz 84 Q> The flocks of crows circled over the battlefield. (까마귀 무리가 전장을 돌았습니다. Many brave warriors have fallen in this battle, many have continued to fight. (많은 용감한 전사들이이 전투에 빠졌고 많은 사람들이 계속 싸웠습니다. ) "If this goes on, we’ll simply kill each other, and there will be no winners - we’ll all lose." - reflected Sir Ronald, watching a bleak picture in front of him. ("이것이 계속된다면, 우리는 단순히 서로를 죽일 것이며, 승자도 없을 것입니..