일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 알고리즘 분석의 실례
- 일차변환
- NumPy
- matrix trnasformations
- linear dependence
- nonhomogeneous linear system
- matrix fo a linear transformation
- trivial solution
- 코틀린 시작하기
- homogeneous linear system
- nontrivial solution
- Big-Oh notation
- recursive algorithms
- 빅오 표기법
- includepdf
- Big Theta
- python
- Big-Oh 예제
- 배열 섞기
- 페이지 겹칩
- Big-O 예제
- Big Omega
- 빅오메가
- itertools
- one-to-one
- 이진 탐색
- 빅세타
- 랜덤 순서 배열
- 재귀함수
- 코틀린 Hello World!
- Today
- Total
코딩 연습
66번 문제는 다음과 같다. Consider quadratic Diophantine equations of the form: x2 – Dy2 = 1 For example, when D=13, the minimal solution in x is 6492 – 13×1802 = 1. It can be assumed that there are no solutions in positive integers when D is square. By finding minimal solutions in x for D = {2, 3, 5, 6, 7}, we obtain the following: 32 – 2×22 = 1 22 – 3×12 = 1 92 – 5×42 = 1 52 – 6×22 = 1 82 – 7×32 = 1 Hen..
문제는 다음과 같다. Each character on a computer is assigned a unique code and the preferred standard is ASCII (American Standard Code for Information Interchange). For example, uppercase A = 65, asterisk (*) = 42, and lowercase k = 107. A modern encryption method is to take a text file, convert the bytes to ASCII, then XOR each byte with a given value, taken from a secret key. The advantage with the XO..
문제는 다음과 같다. In the card game poker, a hand consists of five cards and are ranked, from lowest to highest, in the following way: High Card: Highest value card.One Pair: Two cards of the same value.Two Pairs: Two different pairs.Three of a Kind: Three cards of the same value.Straight: All cards are consecutive values.Flush: All cards of the same suit.Full House: Three of a kind and a pair.Four of ..