最近得到一个需求,要利用SharePoint站点,来实现一个合同的管理,这里面用到的东西有SharePoint站点文档库SharePoint权限管理Office365PowerAutomate,这个东西以前叫Flow我是按以下思科实现的。第一首先创建一个SharePoint站点,选择Teams这种类型第二创建一个文档库,叫合同管理,在这里创建两个文件夹,一个叫待审批,一个叫已发布。这种名字你自己随
分类:
其他好文 时间:
2020-03-23 00:20:53
阅读次数:
270
1.算数运算符 +,-,*,/,%,**,// (1)加号(Plus) + (2)减号(Minus)- (3)乘号(Multipy) * (4)乘方(Power)** 例如:3 ** 4 = 3 * 3 * 3* 3 (5)除号1(Divide) / (6)除号2(Fllor) // a // b: ...
分类:
编程语言 时间:
2020-03-22 19:46:53
阅读次数:
109
题目大意:将范围从1~pow(2,64)-1内的super power输出。super power的定义:一个数x至少存在两种x=pow(i,k),(k!=1)。 题解: 注意数据范围2的64次方-1,而long long 的范围是2的63次方-1,所以要用unsigned long long。 一 ...
分类:
其他好文 时间:
2020-03-22 19:43:28
阅读次数:
68
LeetCode 1387. Sort Integers by The Power Value将整数按权重排序【Medium】【Python】【排序】 Problem "LeetCode" The power of an integer is defined as the number of ste ...
分类:
编程语言 时间:
2020-03-22 10:23:56
阅读次数:
87
#include <stdio.h> int main() { int a[20001];//储存每一位所得到的数 int temp,base,digit,power,i,j=0;//temp每次的得数 digit每次得数的位数 power是幂指数,base是底数 printf("type the ...
分类:
其他好文 时间:
2020-03-21 14:51:45
阅读次数:
41
Design Compiler Power Simulation Although in a common DC flow, the power consumption is calculated and reported, it is not quite accurate since the sw ...
分类:
其他好文 时间:
2020-03-18 21:37:06
阅读次数:
102
人如果没有梦想,那和咸鱼有什么区别。不能征服自己,谈何征服世界。所以我们需要先正式自己,弄清楚“自己想做什么”、“自己能做什么”。我想做什么你想做什么只有你自己知道,它取决于你的方方面面。你走过的路、读过的书、看过的风景、爱过的人都在悄无声息地指引着你前进的方向。不过咱们简单粗暴一点,既然大家都想找 ...
分类:
其他好文 时间:
2020-03-17 08:24:58
阅读次数:
63
12. 数值的整数次方 题目描述 给定一个double类型的浮点数base和int类型的整数exponent。求base的exponent次方。 保证base和exponent不同时为0 分析: 0的任何次幂都是0, 非零整数的 0 次幂都是1, 整数的 负数次幂等于 整数的倒数的正数次幂 最后判断 ...
分类:
其他好文 时间:
2020-03-16 13:15:02
阅读次数:
53
配置ssh(仅主机host only模式) 1. 环境为VMware虚拟机 2. 虚拟网络适配器选择 “仅主机模式” 3. Windows用power shell或cmd查看本机ip地址 4. 将CentOS7的ip地址设置为静态并自定义ip地址 5. ssh连接成功! ...
分类:
其他好文 时间:
2020-03-15 22:07:44
阅读次数:
130