码迷,mamicode.com
首页 >  
搜索关键字:oar    ( 1528个结果
基础实验2-2.1 整数的分类处理 (20分)
给定 N 个正整数,要求你从中得到下列三种计算结果: A1 = 能被 3 整除的最大整数 A2 = 存在整数 K 使之可以表示为 3K+1 的整数的个数 A3 = 存在整数 K 使之可以表示为 3K+2 的所有整数的平均值(精确到小数点后 1 位) 输入格式: 输入首先在第一行给出一个正整数 N,随 ...
分类:其他好文   时间:2020-02-05 13:57:30    阅读次数:109
[leetcode]Word Search II
用了前缀集合,高级的可以用前缀树 class Solution: def findWords(self, board: List[List[str]], words: List[str]) -> List[str]: if len(board) == 0 or len(board[0]) == 0: ...
分类:其他好文   时间:2020-02-03 09:45:19    阅读次数:90
openstack Rocky 社区版部署1.2 安装ntp service
一、controller节点安装ntp 1 安装ntp服务 yum install chrony 2 Edit the chrony.conf file and add, change, or remove the following keys as necessary for your envir ...
分类:其他好文   时间:2020-02-02 17:37:28    阅读次数:80
出错啦!
Leetcode股票问题总结 ADB使用总结 Java文件重命名 SpringBoot文件操作的一些问题 A... ...
分类:其他好文   时间:2020-02-02 11:39:40    阅读次数:85
Codeforces Round #605(Div3)A~E
Codeforces Round 605(Div3)A~E A. Three Friends 题意: + 给三个数$a,b,c$,对每一个数字可以进行一次操作,加一减一或者不变。 + 求三个数两两组合的差值绝对值的最小值。 思路: + 先排个序。 + 假设排序后三个数从小到大是$a,b,c$。 + ...
分类:其他好文   时间:2020-01-31 19:17:05    阅读次数:81
出错啦!
Leetcode股票问题总结 ADB使用总结 Java文件重命名 SpringBoot文件操作的一些问题 A... ...
分类:其他好文   时间:2020-01-29 12:47:49    阅读次数:141
PAT Advanced 1050 Broken Keyboard (20) [Hash散列]
题目 On a broken keyboard, some of the keys are worn out. So when you type some sentences, the characters corresponding to those keys will not appear on ...
分类:其他好文   时间:2020-01-28 21:29:54    阅读次数:63
PAT Advanced 1132 Cut Integer (20分)
Cutting an integer means to cut a K digits lone integer Z into two integers of (K/2) digits long integers A and B. For example, after cutting Z = 1673 ...
分类:其他好文   时间:2020-01-27 17:11:56    阅读次数:80
mac os 的 show All操作
使用command+H隐藏窗口后, 有没有什么办法能把所有隐藏的窗口都展示出来呢 System Preferences > Keyboard > Keyboard Shortcuts > select "Application Shortcuts" > highlight "All Applicat ...
分类:系统相关   时间:2020-01-27 15:49:53    阅读次数:113
数独代码(回溯)
不知道从什么时候养成的习惯,过年也开始读书,写算法,也可能自己太穷想多挣钱,也可能想做出一款像王者荣耀那样巅峰产品,好向家里或者周围的人炫耀,哪种可能都有。尽管资质不高,距梦想差距很大,只要每天做正向积累,努力争取,总有机会被你抓住。 学习回溯算法后,做了习题0-1背包、八皇后、数独,归纳一下:递归 ...
分类:其他好文   时间:2020-01-27 15:40:17    阅读次数:253
1528条   上一页 1 ... 20 21 22 23 24 ... 153 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!