일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
- 혼공C
- 도전실전예제
- C언어
- 코딩테스트
- 대학교재
- r
- 기술
- 빅데이터
- 모두를위한 R데이터분석
- 데이터처리
- 혼자공부하는C언어
- c언어문제풀이
- 코딩연습
- 소수경로
- 연습문제
- Algorithm
- PrimePath
- 알고리즘
- 대학교재풀이
- IT
- 문제해결
- 초보
- 코틀린
- 빅데이터입문
- 모두를위한R데이터분석입문
- c프로그래밍
- Python
- 혼공씨
- 코딩
- c++
- Today
- Total
목록IT (31)
Jupitor's Blog

Write a program that solves the following problem: Three missionaries and three cannibals come to a river and find a boat that holds two people. Everyone must get across the river to continue on the journey. However, if the cannibals ever outnumber the missionaries on either bank, the missionaries will be eaten. Find a series of crossings that will get everyone safely to the other side of the ri..

You have two jugs: a 4-gallon jug and a 3-gallon jug. Neither of the jugs have markings on them. There is a pump that can be used to fill the jugs with water. How can you get exactly two gallons of water in the 4-gallon jug? 당신한테 물통 2개가 있는데, 4갤런짜리랑 3갤런짜리다. 2개 다 어떤 마킹같은건 안되있다. 옆에는 물통에 물을 가득 채울 수 있는 펌프가 있다. 4갤런짜리 물통에 2리터를 담을 수 있는가? 바로 다음 문제는 Generalize the problem above so that the parameters to y..

def isHigherOperator(x : str, y : str) -> bool: if x not in "+-/*" or y not in "+-/*": raise NotOperatorException("isHigherOperator : parameter not operator") if x in "*/" and y in "+-" : return True else: return Falseclass NotOperatorException(Exception): passclass InvalidExpr(Exception): passdef isInt(x) -> bool: try: int(x) return True e..

class Stack: def __init__(self): self.items = [] def is_empty(self): return self.items == [] def push(self, item): self.items.append(item) def pop(self): return self.items.pop() def peek(self): return self.items[len(self.items)-1] def size(self): return len(self.items)class Queue: def __init__(self): self.items = [] def is_..

from BasicDataStructure import Stackimport turtleimport mathdef draw_spiral(my_turtle, line_len): if line_len > 0: my_turtle.forward(line_len) my_turtle.right(90) draw_spiral(my_turtle, line_len - 5) def tree(branch_len, t): if branch_len > 5: t.forward(branch_len) t.right(20) tree(branch_len - 10, t) t.left(40) tree(branch_len - 10,t..

안드로이드 개발에는 자바, 그리고 구글이 밀어주는 Kotlin 언어가 쓰입니다. Kotlin 언어에 관심이 있으시다면 연습을 위해 따로 프로젝트를 만들어서 콘솔 프로그램을 만들어보는게 좋겠죠! Jetbrain의 IntelliJ 프로그램을 이용해서 코틀린 프로그램을 만들어보겠습니다. Community 버전을 설치하겠습니다. 웹에 쓸 것도 아니고 개인용 프로젝트이니까요... New Project. 프로젝트를 만들어 줍시다. 새로운 프로젝트를 생성하시고, 왼편 사이드바 메뉴가 Kotlin을 선택하셔야 Project Template에서 콘솔 프로그램을 선택하실 수 있으세요. 맨 처음 실행하시면 Proejct JDK 에 아무것도 없으실겁니다. 클릭하셔서 Download JDK 를 눌러서 openJDK 16버전을 ..
drive.google.com/drive/folders/1uxZqPt_gzB5vdGSYTbvPFhtGSjPHNgnT?usp=sharing R - Google Drive이 폴더에 파일이 없습니다.이 폴더에 파일을 추가하려면 로그인하세요.drive.google.com 모든 장의 문제에 대한 해답입니다. 참고로 읽기 암호 쓰기 암호 따로 설정해두었습니다.읽기 암호 안에 같이 있고, 읽기암호 입력하시면 쓰기 암호 입력하라고 나오는데 읽기전용으로 여시면 됩니다. 이 곳 아닌 곳에서 배포시 제가 클레임 걸테니까따로 배포는 하지 말아주세요.
제가 이것저것 문제를 풀어본 것에 댓글이 많이 올라오는데... 또 추가적으로 질문이 올라와서요. ehdrh789.tistory.com/11#comment12322428 이 글에서도 5번문제를 풀어달라는 댓글이 많이 나오는데 제가 5번 문제만 풀어서 글에 올리는게 좋으신가요, 아니면 해당 장 전체를 제가 말로 설명한 동영상을 유튜브 이런데에 찍어서 올리기를 원하시나요? 단순히 해당 글의 저 문제 뿐만 아니라 다른 장도 궁금하네요. 제가 여유만 된다면 여러분들이 원하시는 부분을 말로 설명해서 유튜브에 올릴 수 있습니다. 제가 말로 설명을 또 괜찮게 하는 편이라서요. 여러분의 의견이 궁금합니다. 댓글로 달아주시면 감사하겠습니다.