首页
AI Coding
NEW
沸点
课程
直播
活动
AI刷题
APP
插件
搜索历史
清空
创作者中心
写文章
发沸点
写笔记
写代码
草稿箱
创作灵感
查看更多
会员
登录
注册
用户661379147500
掘友等级
获得徽章 0
动态
文章
专栏
沸点
收藏集
关注
作品
赞
0
文章 0
沸点 0
赞
0
返回
|
搜索文章
最新
热门
还原原始字符串 | 豆包MarsCode AI刷题
```python def solution(str1): def can_generate(s, target): """检查字符串s是否能通过操作生成目标字符串target""" current
RGB色值转换为整数值 | 豆包MarsCode AI刷题
```python def solution(rgb): rgb_values = rgb[4:-1].split(',') # Convert the string values to intege
大数和中的极值位距离 | 豆包MarsCode AI刷题
```Python def add_large_numbers(num1: str, num2: str) -> str: """实现大数加法""" # 将较短的数字在前面补0,使两个数字长度相同 m
贪心猫的鱼干大分配 | 豆包MarsCode AI刷题
```python def solution(n, cats_levels): # 初始化每只猫的鱼干数量为1 fish_amounts = [1] * n # 从左到右遍历,确保每只猫的鱼干数量满足
小C点菜问题 | 豆包MarsCode AI刷题
```python def solution(m: int, w: list) -> int: # 初始化价格计数字典 price_count = {} # 遍历每道菜的价格 for price in
小U的最大连续移动次数问题 | 豆包MarsCode AI刷题
```c++ #include #include #include #include using namespace std; int solution(int m, int n, vector> &
数组元素之和最小化 | 豆包MarsCode AI刷题
```c++ #include #include #include using namespace std; int solution(int n, int k) { int sum = 0; for
小E的射击训练 | 豆包MarsCode AI刷题
```python def solution(x: int, y: int) -> int: # 计算射击点到靶心的距离 distance = (x * x + y * y) ** 0.5 # 如果距
小S的倒排索引 | 豆包MarsCode AI刷题
```java import java.util.*; public class Main { public static List solution(List a, List b) { // 使用
游戏排名第三大的分数 | 豆包MarsCode AI刷题
```python def solution(n: int, nums: list) -> int: # 使用集合去重 unique_scores = set(nums) # 将集合转换为列表并排序
下一页
个人成就
文章被点赞
1
文章被阅读
664
掘力值
272
关注了
0
关注者
0
收藏集
0
关注标签
0
加入于
2024-10-15