본문 바로가기

전체 글

(44)
코딩테스트 연습2018 KAKAO BLIND RECRUITMENT[1차] 뉴스 클러스터링 https://school.programmers.co.kr/learn/courses/30/lessons/17677 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr Solution def to_ag(st): ag1 = [] for i in range(len(st)-1): con = False tempstr = st[i:i+2] tempstr = tempstr.lower() for ts in tempstr: if ord(ts) >= 97 and ord(ts)
AWS Cloud Practitioner 생소한 개념 정리 (part1) https://www.udemy.com/course/aws-clf-c01/ 유료 덤프에서 몰랐던 개념 정리 AWS Systems Manager AWS Systems Manager를 사용하면 AWS에서 인프라를 확인하고 제어할 수 있습니다. 시스템즈 매니저는 통합 사용자 인터페이스를 제공하여 여러 AWS 서비스의 운영 데이터를 볼 수 있으며, AWS Cloud는 물론 사내 인프라에서 명령 실행, 패치 관리, 서버 구성과 같은 운영 작업을 자동화할 수 있습니다. AWS Systems Manager는 AWS 인프라에 대한 가시성과 제어를 제공합니다. Systems Manager는 통합된 사용자 인터페이스를 제공하므로 여러 AWS 서비스의 운영 데이터를 보고 AWS 리소스 전체에서 운영 작업을 자동화할 수 있습..
코딩테스트 연습 스택/큐 프로세스 https://school.programmers.co.kr/learn/courses/30/lessons/42587 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr Solution def solution(priorities, location): answer = 0 val_pr = list(zip(list(range(len(priorities))), priorities)) stack = [] while True: _max = max([t[1] for t in val_pr]) if _max == val_pr[0][1]: stack.append(val_pr.pop..
AWS Cloud Practitioner Dump 30문항 및 오답노트 (part3) https://www.examtopics.com/exams/amazon/aws-certified-cloud-practitioner/view/21/ ExamTopics - Biggest Actual IT Exams Database - Validation Want to unlock features that will help you study for AWS Certified Cloud Practitioner and support ExamTopics? We work hard to maintain the website and the database. By buying Contributor Access for yourself, you'll help us maintain and extend ExamTopics an ..
코딩테스트 연습 스택/큐 기능개발 https://school.programmers.co.kr/learn/courses/30/lessons/42586 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr Solution def solution(progresses, speeds): answer = [] progresses = progresses[::-1] speeds = speeds [::-1] print(progresses, speeds) while True: if progresses == []: break for i in range(len(progresses)): progresses[i] += ..
코딩테스트 연습 연습문제 할인 행사 https://school.programmers.co.kr/learn/courses/30/lessons/131127 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr def solution(want, number, discount): answer = 0 for i in range(len(discount)): daydiscount = discount[i:i+sum(number)] count =0 for index, w in enumerate(want): if daydiscount.count(w) >= number[index]: count+=1 else: bre..
코딩테스트 연습 2018 KAKAO BLIND RECRUITMENT[1차] 캐시 https://school.programmers.co.kr/learn/courses/30/lessons/17680 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr def solution(cacheSize, cities): cache = [] answer = 0 for i in range(len(cities)): cities[i] = cities[i].lower() for city in cities: if city in cache: a = cache.pop(cache.index(city)) cache.append(a) answer+=1 elif len(cac..
AWS Cloud Practitioner Dump 30문항 및 오답노트 (part2) 틀린 것 위주로, 오답률이 너무 높은 건 게시하지 않음 총 30문항 https://www.examtopics.com/exams/amazon/aws-certified-cloud-practitioner/view/8/ 1.사용자에게 AWS 인프라, AWS 서비스, API 및 도구를 데이터 센터, 코로케이션 환경 또는 온프레미스 시설로 확장할 수 있는 기능을 제공하는 하이브리드 아키텍처를 지원하는 AWS 서비스는 무엇입니까? A. AWS 스노우모빌 B. AWS 로컬 영역 C. AWS 전초기지 D. AWS 파게이트 2.텍스트를 생생한 음성으로 변환하는 데 사용할 수 있는 AWS 서비스는 무엇입니까? A. 아마존 폴리 B. 아마존 켄드라 C. Amazon Rekognition D. 아마존 커넥트 3.Amazon V..