본문 바로가기

Ankiwoong

(1841)
Python Learn the basics Quiz 76 Q> You need to figure if a wellfounded and wellsized iterable is completely empty. (유망하고 잘 알려진 iterable이 완전히 비어 있는지 파악해야합니다.) An iterable x0 is wellfounded if there is no infinite sequence (무한 시퀀스가 ​​없다면 iterable x0을 잘 알고있다.) x1,x2,x3... such that ... in x3 in x2 in x1 in x0 (where in is meant iteratively, x(n+1) will be encountered while iterating through xn). (x1, x2, x3 ... 이와 같이 ... x0의 x1에서..
Python Learn the basics Quiz 75 Q> Nicola likes to categorize all sorts of things. (Nicola는 모든 종류의 것들을 분류하기를 좋아합니다.) He categorized a series of numbers and as the result of his efforts, a simple sequence of numbers became a deeply-nested list. (그는 일련의 숫자를 범주화하고 그의 노력의 결과로 단순한 숫자의 연속이 깊이 중첩 된 목록이되었습니다.) Sophia and Stephan don't really understand his organization and need to figure out what it all means. (소피아와 스테판은 자신의 조직을 정말로 이..
Python Learn the basics Quiz 74 Q> Sort the given iterable so that its elements end up in the decreasing frequency order, that is, the number of times they appear in elements. (주어진 iterable을 정렬하여 요소가 감소하는 빈도 순서로 끝나도록합니다. 즉 요소에 나타나는 횟수입니다.) If two elements have the same frequency, they should end up in the same order as the first appearance in the iterable. (두 요소의 빈도가 같으면 iterable의 첫 번째 모양과 동일한 순서로 끝나야합니다.) Input: Iterable (반복 ..
Python Learn the basics Quiz 73 Q> One day, on a typical spring afternoon, Sir Ronald has been looking around his land, riding a horse. (어느 날, 전형적인 봄 오후, Ronald 경은 말을 타고 그의 땅을 둘러 보았습니다.) Nothing foretold troubles, when suddenly Sir Ronald heard a scream for help, coming from somewhere nearby: (갑자기 Ronald 경이 근처 어딘가에서 오는 도움 소리를 듣자 갑자기 문제가 발생하지 않았습니다.) - "Help! Help!" - shouted a piercing young girl's voice. (- "도와 줘요!" - 피어싱 어린 ..
Python Learn the basics Quiz 72 Q> Every true traveler must know how to do 3 things: fix the fire, find the water and extract useful information from the nature around him. (모든 진정한 여행자는 3 가지 방법을 알아야합니다. 화재를 해결하고 물을 찾아 주위의 자연에서 유용한 정보를 추출하십시오.) Programming won't help you with the fire and water, but when it comes to the information extraction - it might be just the thing you need. (프로그래밍은 화재와 물에 도움이되지 않지만 정보 추출에 있어서는 필요한 것일 수 있..
Python Learn the basics Quiz 71 Q> There are four substring missions that were born all in one day and you shouldn’t be needed more than one day to solve them. (하루에 모두 태어난 네 개의 하위 문자열 임무가 있으며이를 해결하기 위해 하루 이상을 필요로하지 않아야합니다.) All of those mission can be simply solved by brute force, but is it always the best way to go? (모든 임무는 짐승들에 의해 간단히 해결 될 수 있지만, 항상 최선의 방법입니까?) (you might not have access to all of those missions yet, but the..
HTML5 - 190616 Basic Study 44(WebSite Layout Basic 2) 1. Section HTML Code Main Article Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur in magna libero. Sed nec pharetra nunc. Proin eget magna id ipsum eleifend cursus sit amet nec lectus. Nunc quis lacus magna. Aliquam blandit, sapien ut viverra fermentum, elit tortor ornare nisi, in luctus sem massa pulvinar turpis. Cras tincidunt dictum urna ut ultricies. Nullam diam nibh, pell..
HTML5 - 190616 Basic Study 43(WebSite Layout Basic 1) 1. Website 제작 실습 - 구성 요소 : Header / Section / Footer / Navigation-gnb / Navigation-gnb-submenu Navigation-lnb / Navigation-lnb-submenu / aside - 총 3행 분할 구조 ㄱ. 1행 : Header / Navigation-gnb / Navigation-gnb-submenu / Navigation-lnb / Navigation-lnb-submenu ㄴ. 2행 : Section / aside ㄷ. 3행 : Footer 2. CSS 초기화 코드(동일한 출력 만들기) *{ margin:0 auto; padding:0; } ul,li,ol{ list-style:none; } a{ text-decoration..