ICode9

精准搜索请尝试: 精确搜索
  • docker企业级镜像仓库harbor搭建2021-12-19 10:04:00

    1. 下载harbor离线安装包 harbor下载地址 wget https://github.com/goharbor/harbor/releases/download/v1.10.9/harbor-offline-installer-v1.10.9.tgz 2. 解压harbor安装包 tar xvf harbor-offline-installer-v1.10.9.tgz -C /usr/local/ 3. 编辑harbor配置文件 vim /us

  • C - String Game2021-05-30 10:00:17

      题目 Clair and Bob play a game.Clair writes a string of lowercase characters, in which Bob sets the puzzle by selecting one of his favorite subsequence as the key word of the game. But Bob was so stupid that he might get some letters wrong. Now Clair wa

  • Clair镜像安全扫描工具2021-03-09 20:29:48

    本文主要描述Clair的部署内容 Install:首先要下载好需要的镜像等文件 # Clone the repo git clone git@github.com:arminc/clair-scanner.git # Build and install cd clair-scanner make build make installLocal # Run ./clair-scanner -h 如有问题,也可根据下面命令或网址

  • String Game---The 14th Jilin Provincial Collegiate Programming Contest2021-01-19 21:31:30

    题意: clair的字符串中有几种子序列等于bob的字符串 思路: 自前向后遍历clair的字符串( i=1;i<=l1;i++) 自后向前遍历bob的字符串( j=l2;j>=1;j–) dp【j】代表clair前i个字符有dp【j】种子序列等于bob前j个字符 if(c[i]==b[j])dp[j]=(dp[j-1]+dp[j])%mod; ///c的第i位作为b的

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有