注册一亩三分地论坛,查看更多干货!
您需要 登录 才可以下载或查看附件。没有帐号?注册账号
x
1. Family Logins pair count
给一个string array, 每个string 的所有char 可以字母可以加一个或者减一个,比如 "bcd" 可以 变成 "abc" 或者 "cde", 问array 中存不存在shift 过的string,并返回这样的pair count
example input: ["corn", "horn", "dpso", "eqtp", "corn"]
output: 3
{"corn", "dpso"}
{"dpso", "eqtp"}
{"dpso", "corn"}
2. findMaximumSustainableClusterSize 那题
Give you a list servers. Their processing power is given as a array of integer, and boot power as a array of integer.
Write a function to return the max le您好! 本帖隐藏的内容需要积分高于 188 才可浏览 您当前积分为 0。 使用VIP即刻解锁阅读权限或查看其他获取积分的方式 游客,您好! 本帖隐藏的内容需要积分高于 188 才可浏览 您当前积分为 0。 VIP即刻解锁阅读权限 或 查看其他获取积分的方式 ng power最大的值) + sum(i j processing power) *k
算出连续最长得subarray j-i+1
这题hard 比较难
用sliding window 来记录processingPower
用单调递减q 去记录bootingPower
一定要用模板
亚麻的题真是难,大家好运! |