当前位置:网站首页>力扣刷题日记/day5/2022.6.27
力扣刷题日记/day5/2022.6.27
2022-07-04 16:33:00 【bobo洁厕灵】
新手村
求一个数组中的最大值,可以使用Math.max()函数
首先去MDN官网查看使用说明
想要直接获取一个数组中的最大值
可以使用以下拓展方法
var arr = [1, 2, 3];
var max = Math.max(...arr);
Math.max的使用方法已经了解
例题
解题思路:
整数网络以二维数组的形式存储,共有m行n列,共有m个客户,n个银行。
首先定义一个ans,返回最大资产ans
遍历m个客户,m=accounts.length
定义一个数值money,用来存储每个客户所有银行的资产
遍历n个银行,n=accounts[0].length
把每个银行的资产相加,money+=accounts[i][j];
再把客户资产最大值求出来,ans=Math.max[ans,money]
class Solution {
public int maximumWealth(int[][] accounts) {
int ans=0;
for(int i=0;i<accounts.length;i++)
{
int money=0;
for(int j=0;j<accounts[0].length;j++)
{
money +=accounts[i][j];
}
ans = Math.max(ans, money);
}
return ans;
}
}
求数组中最大值并且求出其下标
假设法
var arr = [1, 20, 30, 60, 80, 90, 99, 89, 100];
var max = arr[0]; //假设第一个数最大
int index = 0; // 定义的一个下标
for (var i = 0; i < arr.length; i++){ //让数组中其他数和我们假定的最大的数比较,遍历
if (max < arr[i]){ //让它们依次比较,如果比我们假定的数大
max = arr[i]; // 我们就将那个较大的数的值给max
index = i; // 将较大值的下标给index
}
} 最后的max就是最大值
console.log('该数组中的最大值是:'+ max);
console.log('数组中的最大值的下标是:'+index)
边栏推荐
- 你应该懂些CI/CD
- Stars open stores, return, return, return
- 【系统分析师之路】第七章 复盘系统设计(结构化开发方法)
- Redis主从复制
- Large scale service exception log retrieval
- Face_recognition人脸识别之考勤统计
- SIGMOD’22 HiEngine论文解读
- [211] go handles the detailed documents of Excel library
- Detectron2 installation method
- Device interface analysis of the adapter of I2C subsystem (I2C dev.c file analysis)
猜你喜欢
同事悄悄告诉我,飞书通知还能这样玩
Thawte通配符SSL证书提供的类型有哪些
Neglected problem: test environment configuration management
机器学习概念漂移检测方法(Aporia)
蓝桥:合根植物
ISO27001 certification process and 2022 subsidy policy summary
[HCIA continuous update] network management and operation and maintenance
RecastNavigation 之 Recast
创业两年,一家小VC的自我反思
估值900亿,超级芯片IPO来了
随机推荐
【系统盘转回U盘】记录系统盘转回U盘的操作
Wuzhicms code audit
RecastNavigation 之 Recast
Load test practice of pingcode performance test
Introduction of time related knowledge in kernel
【Proteus仿真】基于VSM 串口printf调试输出示例
【210】PHP 定界符的用法
Detectron2 installation method
[211] go handles the detailed documents of Excel library
【211】go 处理excel的库的详细文档
People in the workplace with a miserable expression
超标量处理器设计 姚永斌 第5章 指令集体系 摘录
Is it safe to open an account online? is that true?
ITSS运维能力成熟度分级详解|一文搞清ITSS证书
90后开始攒钱植发,又一个IPO来了
同事悄悄告诉我,飞书通知还能这样玩
You should know something about ci/cd
Blood spitting finishing nanny level series tutorial - play Fiddler bag grabbing tutorial (2) - first meet fiddler, let you have a rational understanding
【云端心声 建议征集】云商店焕新升级:提有效建议,赢海量码豆、华为AI音箱2!
如何使用 wget 和 curl 下载文件