본문 바로가기

전체 글36

[CodingTest][2022-12-06]프로그래머스 코딩테스트 입문 문제들 프로그래머스 코딩테스트 입문 밀린 것들 좀 쭉 풀었음. 하루 최소 3문제 였기 때문에 일,월,화 최소 9문제 풀 예정. 두 수의 곱 link : https://school.programmers.co.kr/learn/courses/30/lessons/120804 문제 설명 정수 num1, num2가 매개변수 주어집니다. num1과 num2를 곱한 값을 return 하도록 solution 함수를 완성해주세요. 제한사항 0 ≤ num1 ≤ 100 0 ≤ num2 ≤ 100 입출력 예 num1 num2 result 3 4 12 2 19 513 코드 제출 : def solution(num1, num2): return num1*num2 해설 더보기 곱한 값을 반환하면 되는 쉬운 문제. 파이썬의 기본 산술 연산자 *.. 2022. 12. 6.
[CodingTest][2022-12-05]프로그래머스 스킬 테스트 Level 1 스킬 체크 테스트 Level.1 / 문제 1 https://programmers.co.kr/skill_checks/443156?challenge_id=978 문제 from datetime import date def solution(a, b): answer = '' days = ['MON','TUE','WED','THU','FRI','SAT','SUN'] years = 2016 mydate = date(years, a, b).weekday() answer = days[mydate] # Return the day of the week as an integer, where Monday is 0 and Sunday is 6. For example, date(2002, 12, 4).weekday() == 2, .. 2022. 12. 6.
How the Internet Works in 5 Minutes 정리 인터넷의 동작 원리 및 흐름적인 이해를 위해서 + 개인적으로 번역 추가 및 개념적 이해 추가를 위해서 작성함. How the Internet Works in 5 Minutes Source : https://www.youtube.com/watch?v=7_LPdttKXPc + 더보기에는 들으면서 타이핑 친 것 및 본인이 이해하려고 추가한 내용적인 글이 있습니다. 더보기 The Internet is a wire. Actually buried in the ground it might be fiber optics copper or occasionally beam to satellites to through cell phone networks but the internet is simply a wire. 인터넷은 .. 2022. 11. 29.
첫 글. 떨린다. 취직을 준비하게 되면서 이력서를 쓰고 배웠던 것들을 정리할 필요성을 느껴서 고민 중이었는데 마침 99일 챌린지가 있어서 만듬. 잘 되고 싶다. 취업도 그렇고.. 다! 모두 잘 되길! 2022. 9. 24.