iOSabc
iOSabc
全部文章
分类
题解(24)
归档
标签
去牛客网
登录
/
注册
iOSabc的博客
全部文章
(共24篇)
题解 | #学英语#
Swift题解 import Foundation while let n = Int64(readLine() ?? "") { let str = n.formatedExpress let array = str.components(separatedBy: ",").ma...
Swift
2021-12-17
0
332
题解 | #称砝码#
Swift题解 while let n = Int(readLine() ?? "") { let ws = readLine() ?? "" let ns = readLine() ?? "" let weights = ws.components(separatedBy:...
Swift
2021-12-17
3
264
题解 | #删除字符串中出现次数最少的字符#
C题解 #include<stdio.h> #include <string.h> #include <stdlib.h> int timesOfCharInString(char *s, char c) { int i = -1; int ti...
C
2021-12-15
0
338
题解 | #质数因子#
C不超时题解 int main() { int n = 0; scanf("%d", &n); if(n <= 3) { printf("%d\n", n); } else { for(int i = 2; i < ...
C
2021-12-10
1
578
首页
上一页
1
2
3
下一页
末页