import pandas as pd
from glob import glob
if __name__ == "__main__":
files = glob("./data/**/**/*")
df_list = []
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Xunit; | |
using DSWithAlgo.DS.LinkedList.SingleLinkedList; | |
namespace DSWithAlgo.Tests.LinkedList | |
{ | |
public static class LinkedListTests | |
{ | |
[Fact] | |
public static void Add() | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import matplotlib.pyplot as plt | |
import numpy as np | |
import time | |
def generate_data(): | |
rng = np.random.RandomState(1) | |
X = 10 * rng.rand(200) | |
y = 2 * X - 5 + rng.randn(200) | |
return X, y |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import numpy as np | |
def compute_error_for_line_given_points(b, m, points): | |
total_error = 0 | |
for i in range(0, len(points)): | |
x = points[i, 0] | |
y = points[i, 1] | |
total_error += (y - (m * x + b)) ** 2 | |
return total_error / float(len(points)) |
- TeX Live(>=2022) ๋ค์ด๋ก๋
- ์ค์น์ ์ฌ์๋
texlive2022.iso
ํ์ผ์ ๋ค์ด๋ก๋
- ์ค์น์ ์ฌ์๋
- TeX Live ์ค์น
- TeXLive ISO ์ค์น ๊ด๋ จ
- case 1)
- TeXLive ISO ์ค์น ๊ด๋ จ
texlive2022.iso
ํ์ผ์ ๋ง์ฐ์ค๋ก ๋๋ธ ํด๋ฆญ(double click) ํ >Open
์ ํ
- https://github.com/naver/d2codingfont
- ์ต์ ๋ฒ์ ์ผ๋ก ๋ค์ด๋ก๋
- https://github.com/IBM/plex
- TrueType์ผ๋ก ๋ค์ด๋ก๋
- *.deb ํ์ผ๋ก ์ค์น๊ฐ ํ๋ค ๊ฒฝ์ฐ
- ์ ํ๋ฆฌ์ผ์ด์ ์ ์์กด์ฑ์ ์ถฉ์กฑ ๋ชปํ๊ธฐ ๋๋ฌธ
- ์ง์์ ์ผ๋ก ์ ํ๋ฆฌ์ผ์ด์
์ ๊ด๋ฆฌํด์ผ ํ ๊ฒฝ์ฐ
- ์ ์ฅ์์ ์ ํ๋ฆฌ์ผ์ด์ ์ด ์ ๋ฐ์ดํธ ๋จ
$ sudo apt update
$ sudo apt upgrade