摘要: 画点 from PIL import Image from pylab import * import cv2 import matplotlib.pyplot as plt im = array(Image.open('E:/1.jpg')) # im.astype(int) plt.imshow 阅读全文
posted @ 2022-02-09 20:04 WTSRUVF 阅读(120) 评论(0) 推荐(0)
摘要: 用循环 暴力即可 class Solution { public: string tictactoe(vector<string>& board) { int n = board.size(); int flag1 = 0, flag2 = 0, flag3 = 1; for(int i = 0; 阅读全文
posted @ 2022-02-09 09:23 WTSRUVF 阅读(32) 评论(0) 推荐(0)