Probability and Information Theory

3. Probability and Information Theory Preface Probability theory is mathmatical framework for representing uncertain statements. Usage in AI the laws of p...

Algorithm - Kth number

알고리즘(Python, JavaScript) - K번재 수 Input12array = [1, 5, 2, 6, 3, 7, 4] commands = [[2, 5, 3], [4, 4, 1], [1, 7, 3]] Expected Output1output = [5, 6, 3] 목표배열 ...

Linear Algebra for ML

2. Linear Algebra 2.1 Scalars, Vectors, Matrices and Tensors Scalars : 스칼라는 선형수학에서 보는 형태와 달리 하나의 단어로 표현되며 주로 이탈릭체를 사용한다. 실수인지 자연수인지 등의 어떤 형태의 수인지 주로 함께 서술하여...

Algorithm - Player who did not finish

알고리즘(Python, JavaScript) - 완주하지 못한 선수 Input12participant = ["John", "David", "Becky"]finisher = ["Becky", "David"] Expected Output1result = "John"...

객체지향에서의 Attribute, Python의 @property와 @속성.setter

객체지향에서의 Attribute, Python의 @property와 @속성.setter 객체지향 프로그래밍에서는 객체의 속성 (attribute)을 행위 (method)를 통하여 객체를 나타냅니다.자동차를 객체로 생각한다면 한 자동차에서 속성중 하나인 기름의 양을 oil_am...