| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 | 31 |
- 문자열
- OOP
- baekjoon
- 배열
- const
- Object Oriented Programming
- array
- programming
- function
- 백준
- 포인터
- 티스토리챌린지
- vscode
- Python
- Data Science
- 오블완
- C++
- Pre-processing
- 반복문
- assignment operator
- Deep Learning
- Class
- predictive analysis
- pointer
- pass by reference
- 알고리즘
- raw data
- string
- 함수
- 파이썬
- Today
- Total
목록Data Science (94)
Channi Studies
Since I've started to use Obsidian for summarizing my leranings, I will upload the PDF of the note in this blog from now on. Open in new tab
Let's try implementing a Stack in Java using IntNode. The structure of IntNode looks like this: private static class IntNode() { int val; IntNode next; IntNode(int val, IntNode next) { this.val = val; this.next = next; }} We're going to put this private static IntNode class into the Stack class. We call it nested classes, and there are times when we should declare it a..
This Jupyter Notebook file tells you about the numpy array (numpy.ndarray) basics. Creating different shaped array, reshaping, random array, array indexing, etc.
To create an ArrayList (or LinkedList) in Java, you can do as following:import java.util.ArrayList;import java.util.List;public class Main { public static void main(String[] args) { List myList = new ArrayList(); myList.add(10); myList.add("Go"); myList.add(false); System.out.println(myList); // [10, Go, false] }}If we do not specify the type of the eleme..