| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
- 오블완
- 파이썬
- 티스토리챌린지
- Object Oriented Programming
- const
- 함수
- C++
- raw data
- pointer
- array
- 반복문
- 포인터
- 백준
- vscode
- 배열
- Data Science
- Pre-processing
- Python
- assignment operator
- baekjoon
- 알고리즘
- Class
- function
- programming
- pass by reference
- OOP
- string
- predictive analysis
- Deep Learning
- 문자열
- Today
- Total
목록분류 전체보기 (188)
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..