import turtle n = eval(input("请输入五角星的长度")) turtle.begin_fill() #开始填充颜色 i = 0 while i < 5: turtle.forward(n) turtle.right(180-36) i += 1 turtle.color(" ...
分类:
其他好文 时间:
2020-10-09 20:20:03
阅读次数:
33
链接:https://leetcode-cn.com/problems/number-of-islands/ // flood fill class Solution { public: vector<vector<char>> g; int dx[4] = {-1, 0, 1, 0}, dy[4] ...
分类:
其他好文 时间:
2020-10-06 20:13:28
阅读次数:
25
给树莓派设置静态IP原因 DHCP自动分配的IP来回变动,导致远程连接无法实现 可以提高联网速度 网上大多数方法都是修改 /etc/network/interfaces 配置文件,增加静态IP的设定。但是在树莓派上通过修改 interfaces 设置静态IP的方法,并不完美,即便取得了静态IP,DH ...
分类:
其他好文 时间:
2020-10-05 22:18:20
阅读次数:
28
Flood Fill 可以在线性时间复杂度内找到某个点所在的连通块 1097.池塘计数 链接:https://www.acwing.com/problem/content/1099/ #include <iostream> #include <algorithm> #include <cstring ...
分类:
编程语言 时间:
2020-09-24 00:00:51
阅读次数:
38
from turtle import* fillcolor("red") begin_fill() while True: forward(200) right(144) if abs(pos()) < 1: break end_fill() import turtle turtle.write(" ...
分类:
其他好文 时间:
2020-09-18 02:17:34
阅读次数:
42
描边 首先的想法就是俩个textview 这样是不是一下子就理解了 感觉很简单实现了? 1.在res下的values里面的colors.xml 新增一个描边颜色 我用的是白色 <?xml version="1.0" encoding="utf-8"?> <resources> <color name ...
分类:
移动开发 时间:
2020-09-17 20:47:31
阅读次数:
39
#include <easyx.h> #include <conio.h> #include <list> using namespace std; int sx = 25; int sy = 25; int x; int y; char ch = 'd'; char score[12]; int ...
分类:
其他好文 时间:
2020-09-17 16:07:41
阅读次数:
25
1、测试TensorFlow是否安装成功 python import tensorflow as tf hello=tf.constant('hello,world') sess=tf.Session() print(sess.run(hello)) 结果会输出,如下图所示 2、TensorFlow ...
分类:
其他好文 时间:
2020-09-17 13:21:36
阅读次数:
34
1、Array.of() 将任意一组值转换为数组 //Array.of() // var arr = new Array(1, 2, 3, 5, 8) // var str = '12,3,5,6,ss' // console.log(Array.of(str)) 2、Array.from() 将类 ...
分类:
编程语言 时间:
2020-09-15 20:49:27
阅读次数:
44