본문 바로가기

전체 글

(1835)
Correct Sentence Quiz> For the input of your function, you will be given one sentence. You have to return a corrected version, that starts with a capital letter and ends with a period (dot). Pay attention to the fact that not all of the fixes are necessary. If a sentence already ends with a period (dot), then adding another one will be a mistake. Input: A string. Output: A string. Example: correct_sentence("gree..
Fizz Buzz Quiz> "Fizz buzz" is a word game we will use to teach the robots about division. Let's learn computers. You should write a function that will receive a positive integer and return: "Fizz Buzz" if the number is divisible by 3 and by 5; "Fizz" if the number is divisible by 3; "Buzz" if the number is divisible by 5; The number as a string for other cases. Input: A number as an integer. Output: The ..
Say Hi Quiz> We have prepared a set of Editor's Choice Solutions. You will see them first after you solve the mission. In order to see all other solutions you should change the filter. In this mission you should write a function that introduces a person with the given parameter's attributes. Input: Two arguments. String and positive integer. Output: String. Example: say_hi("Alex", 32) == "Hi. My name i..
First Word (simplified) Quiz> You are given a string where you have to find its first word. This is a simplified version of the First Word mission. Input string consists of only english letters and spaces. There aren’t any spaces at the beginning and the end of the string. Input: A string. Output: A string. Example: first_word("Hello world") == "Hello" How it is used: The first word is a command in a command line. Prec..
Easy Unpack Quiz> Your mission here is to create a function that gets a tuple and returns a tuple with 3 elements - the first, third and second element from the last for the given array. Input: A tuple, at least 3 elements long. Output: A tuple. Example: easy_unpack((1, 2, 3, 4, 5, 6, 7, 9)) == (1, 3, 7) easy_unpack((1, 1, 1, 1)) == (1, 1, 1) easy_unpack((6, 3, 7)) == (6, 7, 3) def easy_unpack(elements: tup..
Multiply (Intro) Quiz> (at the top right of the mission description there always is a list of available translations) This is an intro mission, the purpose of which is to explain how to solve missions on CheckiO and how to get the most out of solving them. When the mission is solved, one more station become available for you, containing more complex missions. So this mission is the easiest one. Write a function ..
[WakaTime]Week 5 of March(20.03.30 ~ 20.04.05) WakaTime 20.03.30 ~ 20.04.05 Coding : 11hrs 32mins IDEL : VS Code Language : Python / PHP
[InternetExplorer]인터넷 익스플로러 셋팅 방법 현재 맡고 있는 사이트에 인트라넷이 Internet Explorer만 사용이 가능하다면 아래의 설정을 하면 조금 더 편하고 안전하게 사용이 가능하다. 물론 아래의 설정은 개인적으로 많은 설정을 해보고 테스트를 해보고 해서 나온 결과물이다. 지금 설정된 InterInternetExplorer 11 버전 인터넷 속성 > 시작페이지 지정 검색 기록 > 설정 웹 페이지를 열 때마다 체크 보안 > 인터넷 > 사용자 지정 수준 ActiveX 컨트롤을 자동으로 사용자에게 확인 > 사용 서명 안 된 ActiveX 컨트롤 다운로드 > 확인 Windows Defender SmartScreen 사용 > 사용 안함 팝업 차단 사용 > 사용 혼합된 콘텐츠 표시 > 사용 보호 모드 사용 > 해제 보안 > 로컬 인트라넷 > 사용자..