首页
AI Coding
NEW
沸点
课程
直播
活动
AI刷题
APP
插件
搜索历史
清空
创作者中心
写文章
发沸点
写笔记
写代码
草稿箱
创作灵感
查看更多
会员
登录
注册
用户661379147500
掘友等级
获得徽章 0
动态
文章
专栏
沸点
收藏集
关注
作品
赞
0
文章 0
沸点 0
赞
0
返回
|
搜索文章
最新
热门
组成字符串ku的最大次数 | 豆包MarsCode AI刷题
```python def solution(s: str) -> int: # 将字符串转换为小写 s = s.lower() # 初始化计数器 count_
小D的 abc 变换问题 | 豆包MarsCode AI刷题
```java public class Main { public static String solution(String s, int k) { // 初始化 StringBuilder St
小U的数字插入问题 | 豆包MarsCode AI刷题
``` public class Main { public static int solution(int a, int b) { // 将数字 a 和 b 转换为字符串 String strA =
比赛配对问题 | 豆包MarsCode AI刷题
``` def solution(n: int) -> int: pairs = 0 while n > 1: if n % 2 == 0: pairs += n // 2 n = n // 2 el
最大矩形面积问题 | 豆包MarsCode AI刷题
`` def solution(n, array): stack = [] max_area = 0 index = 0 while index < n:
观光景点组合得分问题 | 豆包MarsCode AI刷题
``` #include using namespace std; int solution(vector values) { if(values.size() == 1) return 0; int
小F的永久代币卡回本计划 | 豆包MarsCode AI刷题
``` #include using namespace std; int solution(int a, int b) { return (a / b) + (a % b != 0); } int
构造特定数组的逆序拼接 | 豆包MarsCode AI刷题
``` def solution(n: int) -> list: result = [] for i in range(1, n + 1): # 生成从 n 到 i 的逆序列表 reverse_li
超市里的货物架调整 | 豆包MarsCode AI刷题
``` #include using namespace std; int solution(int n, int m, string s, string c) { map ps, pc; for (
寻找最大葫芦 | 豆包MarsCode AI刷题
``` #include using namespace std; vector solution(int n, int max, const vector& array) { map p; for(
下一页
个人成就
文章被点赞
1
文章被阅读
664
掘力值
272
关注了
0
关注者
0
收藏集
0
关注标签
0
加入于
2024-10-15