728x90

for 8

23.02.08(수): 반복문 (while, do-while, for) + 다중 for문

오늘 배운 것 01. while 02. do-while 03. for - 다중 for문 01. while 실습 052 정수 2개를 입력받고, 작은 수부터 큰 수까지 누적합을 구하고 출력. 2/8 내 코드 더보기 // 2/8 내 코드 BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); System.out.print("첫 번째 정수 입력: "); int a = Integer.parseInt(br.readLine()); int oa = a; // 출력문에 쓸 a의 원본 값 System.out.print("두 번째 정수 입력: "); int b = Integer.parseInt(br.readLine()); int ob = b; //..

[leetCode] 1773. Count Items Matching a Rule (Python)

▼ 문제 바로가기 (링크) ▼ https://leetcode.com/problems/count-items-matching-a-rule/ Count Items Matching a Rule - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 3개 원소를 가지는 리스트를 1개 이상 가지는 중첩 리스트items가 주어진다. 원소는 순서대로 type, color, name을 나타낸다. ruleKey와 ruleValue가 주어졌을 때, 맞는 값이 items에 몇 개 있는 지..

[leetCode] 1791. Find Center of Star Graph (Python)

▼ 문제 바로가기 (링크) ▼ https://leetcode.com/problems/find-center-of-star-graph/ Find Center of Star Graph - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 모든 값과 연결되어있는 중앙 노드를 찾고 그 값을 반환하는 문제. 리스트 안에 하위 리스트가 존재하며 하위리스트는 2개의 값을 가진다. class Solution: def findCenter(self, edges: List[List[in..

[leetCode] 2367. Number of Arithmetic Triplets (Python)

▼ 문제 바로가기 (링크) ▼ https://leetcode.com/problems/number-of-arithmetic-triplets/ Number of Arithmetic Triplets - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com Arithmetic Triplets : 산술 삼중항 값이 증가하는 정수를 담는 리스트 nums와 정수 diff가 주어진다. nums[0] 부터 숫자 3개를 뽑는데 직전 숫자와의 차이가 diff와 같은 경우의 수를 반환하는 ..

[leetCode] 1431. Kids With the Greatest Number of Candies (Python)

▼ 문제 바로가기 (링크) ▼ https://leetcode.com/problems/kids-with-the-greatest-number-of-candies/ Kids With the Greatest Number of Candies - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 정수 배열이 주어진다. 각 원소에 변수 extraCandies를 더했을 때, 전체 원소 중 최대값인지 여부를 판단하고 그 불리언 값을 리스트로 반환하는 문제. class Solutio..

[부스트코스] 모두를 위한 파이썬 (PY4E) 3주 차_정리 (4/8)

▼ 강의 보러 가기 ▼ www.boostcourse.org/cs122 3주차 학습 범위는 5단원! [ 이번 주는 무엇을 배웠나요? PY4E 요약 정리! ] 5. 루프와 반복문 1) while 루프 while과 콜론 사이에 오는 조건문이 True면 :(콜론)이하의 코드를 반복. 편리한 문법이지만 무한루프에 빠질 수 있는 단점이 있으니 남용하면 안 됨. 2) while문 루프 제어 - break 루프를 종료하고 빠져나온다. (while 문 내의 남은 코드는 실행하지 않는다.) print("과일 이름 맞추기 게임~!") while True: text = input('과일 이름을 입력하세요!:') if text == '무화과': break print(text+"가 아닙니다!") print(text+'! 정답입니..

웹개발 종합반 1주차 (1-15) : Javascript 연습 (list-dictionary, 반복문, 조건문)

예제 1) 서울시 미세먼지 콘솔 창에 코드 스니펫(서울시 미세먼지) 붙여 넣고 엔터. mise_list 불러보면 리스트 안에 딕셔너리가 25개 들어있는 구조. 딕셔너리를 순서대로 출력하려면 반복문 사용. for (let i = 0; i 0번부터 25번까지. 화살표 위 키로 반복문 다시 불러오기. 딕셔너리 하나를 열어 키 -밸류 구성 확인, console.log로 구 이름과 미세먼지 값만 반복해서 찍어보기. * 더블 클릭하면 그 영역만 선택됨. *선택된 부분을 클릭-드래그해서 옮기기 가능. 제대로 ..

웹개발 종합반 1주차 (1-14) : Javascript 기초 문법(2) - 함수, 조건문, 반복문

cf. 수학에서의 함수: 값을 넣으면 해당하는 결과 값이 나옴. *프로그래밍에서 함수: 부르면 정해진 일을 실행함. *개발자 도구 콘솔 : { }로 조건 입력할 때 처럼, 명령 없이 다음 줄로 넘어가려면 shift + enter 자바스크립트는 변수, 자료형, 함수, 조건문, 반복문 5가지만 알고 있어도 기본적인 로직 구현 가능. [3] 함수 (이어서) : *만들기 (선언) function 함수이름(필요한 변수들) { 내릴 명령 내용을 순차적으로 작성 } *사용하기 함수이름(필요한 변수들); ex 1) 더하는 함수 만들기 function sum(num1, num2) { return num1 + num2; } : sum 이라는 이름의 함수는 num1 과 num2를 가지고, 두 값을 더한 값으로 반환(retu..

728x90