| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
- 파이썬
- 문자열
- 알고리즘
- predictive analysis
- Class
- Deep Learning
- programming
- string
- 티스토리챌린지
- 함수
- vscode
- pass by reference
- assignment operator
- 오블완
- raw data
- 포인터
- array
- pointer
- Python
- Data Science
- 배열
- const
- Pre-processing
- C++
- function
- Object Oriented Programming
- 반복문
- baekjoon
- OOP
- 백준
- Today
- Total
목록전체 글 (188)
Channi Studies
Today, I learned about AUTOCOMMIT, COMMIT, and ROLLBACK keywords in MySQL. AUTOCOMMIT is a mode; by default, AUTOCOMMIT is set to ON. When AUTOCOMMIT is on (by default), every change you make is immediately nad permanently saved. It means that you can't roll back if you made an error because each statement is automatically committed.We can turn it off by using following statement:SET AUTOCOMMIT..
Updating and Deleting Data 지난 포스트에 이어서, 현재 우리가 가지고 있는 데이터는 다음과 같습니다. 여섯번째 행의 데이터, Plankton 데이터의 시급과 취직 날짜가 NULL 인 것을 볼 수 있습니다. 우리는 이 데이터들을 업데이트 하고 싶습니다. 이 때, 우리는 UPDATE 키워드를 사용합니다. UPDATE 키워드에 추가적으로 SET 키워드로 업데이트할 값을 지정해주고, WHERE 키워드로 변경할 대상 row를 특정합니다. UPDATE employeesSET hourly_pay = 15.00WHERE employee_id = 6; We can also update mutiple columns at once, by separating them with commas. (Noti..
Euler's Method, 오일러 방법은 미분방정식의 해를 근사치로 구하는 recursive numerical analysis method 입니다. 프로그래밍에 익숙한 학생들은 recursive function을 생각하면 정확히 같습니다. Given dy/dx = f(x, y) 에서, f(x, y) 는 dy/dx 이기 때문에 그 자체로 방정식의 해 y = f(x) 의 기울기 (slope)를 나타냅니다. 그리고 주어진 initial value가 y(x₀) = y₀ 이라고 했을 때, 다음과 같은 관계가 성립합니다. y_(n + 1) = y_n + h * f(x_n, y_n) 예를 들어 x₀ = 2, y₀ = 3 이 주어졌다면,y₁ = y₀ + h * f(x₀, y₀) = 3 + h * f(2, 3) 이 ..
A fast sorting algorithm is a sorting algorithm that has an average runtime complexity of O(n log n) or better. The table below shows average runtime complexities for several sorting algorithms. Comparison sortingAn element comparison sorting algorithm is a sorting algorithm that operates on an array of elements that can be compared to each other.Ex: An array of strings can be sorted with a..