1 Star 0 Fork 2

TonyLee/Algorithm

forked from wangjili/Algorithm 
Create your Gitee Account
Explore and code with more than 14 million developers,Free private repositories !:)
Sign up
文件
This repository doesn't specify license. Please pay attention to the specific project description and its upstream code dependency when using it.
Clone or Download
Ants.java 313 Bytes
Copy Edit Raw Blame History
RosinaWang authored 2017-09-05 17:20 +08:00 . first commit
package nowCoderClass1.section10;
/**
* Created by Dell on 2017-06-02.
*/
public class Ants {
public int[] collision(int n) {
//求2的n-1次
int count=n;
int res=1;
while(--count!=0){
res*=2;
}
int[] arr={res-1,res};
return arr;
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/TonyLee1024/Algorithm.git
git@gitee.com:TonyLee1024/Algorithm.git
TonyLee1024
Algorithm
Algorithm
master

Search