摘要: 1 import java.io.BufferedReader; 2 import java.io.FileReader; 3 4 public class TestRead { 5 6 public static void main(String[] args) { 7 try { 8 Buffe 阅读全文
posted @ 2021-05-20 22:09 墨鳌 阅读(124) 评论(0) 推荐(0) 编辑
摘要: 1 import numpy as np 2 from sklearn.manifold import TSNE 3 import matplotlib.pyplot as plt 4 from mpl_toolkits.mplot3d import Axes3D 5 6 7 def read(pa 阅读全文
posted @ 2021-05-20 20:57 墨鳌 阅读(81) 评论(0) 推荐(0) 编辑
摘要: 1 import numpy as np 2 3 4 def update(a: int, b: int, c: int) -> tuple: 5 if a > b and a > c and a > 0: 6 return a, "↖" 7 if b > a and b > c and b > 0 阅读全文
posted @ 2021-05-20 17:18 墨鳌 阅读(63) 评论(0) 推荐(0) 编辑
摘要: 1 import numpy as np 2 3 4 def update(a: int, b: int, c: int) -> tuple: 5 if a > b and a > c: 6 return a, "↖" 7 if b > a and b > c: 8 return b, "↑" 9 阅读全文
posted @ 2021-05-20 17:09 墨鳌 阅读(56) 评论(0) 推荐(0) 编辑