首页
题库
公司真题
专项练习
面试题库
在线编程
面试
面试经验
AI 模拟面试
简历
求职
学习
基础学习课
实战项目课
求职辅导课
专栏&文章
竞赛
搜索
我要招人
发布职位
发布职位、邀约牛人
更多企业解决方案
在线笔面试、雇主品牌宣传
登录
/
注册
派仔
获赞
2357
粉丝
30
关注
5
看过 TA
713
男
门头沟学院
2024
研发工程师
IP属地:广东
暂未填写个人简介
私信
关注
拉黑
举报
举报
确定要拉黑派仔吗?
发布(160)
评论
刷题
派仔
关注TA,不错过内容更新
关注
2023-03-27 16:48
门头沟学院 研发工程师
题解 | #明明的随机数#
s = set() N = int(input()) for i in range(N): num = int(input()) s.add(num) for num in sorted(s): print(num)
0
点赞
评论
收藏
分享
2023-03-27 16:44
门头沟学院 研发工程师
题解 | #字符串最后一个单词的长度#
string = input() print(len(string.split()[-1]))
0
点赞
评论
收藏
分享
2023-03-27 16:38
门头沟学院 研发工程师
题解 | #字符串分隔#
string = input() n = len(string) for i in range(0, n, 8): if i + 8 < n: print(string[i:i+8]) else: print(string[i:] + "0"*(i+8-n))
0
点赞
评论
收藏
分享
2023-03-27 16:30
已编辑
门头沟学院 研发工程师
题解 | #合并表记录#
from collections import defaultdict n = int(input()) d = defaultdict(int) for i in range(n): idx, val = map(int, input().split()) d[idx] += val for key in sorted(d): print("{} {}".format(key, d[key]))
0
点赞
评论
收藏
分享
2023-03-24 23:46
门头沟学院 研发工程师
题解 | #表达式求值#
def calculate(expression): """ 计算给定算术表达式的值 :param expression: 字符串描述的算术表达式 :return: 计算结果 """ def parse_number(): nonlocal i j = i while j < len(expression) and expression[j].isdigit(): j += 1 number = int(expression[i:j]) ...
0
点赞
评论
收藏
分享
2023-03-24 22:53
门头沟学院 研发工程师
题解 | #计算某字符出现次数#
import sys string = input() char = input() count = 0 for ch in string: if ch.lower() == char.lower(): count += 1 print(count)
0
点赞
评论
收藏
分享
2021-08-20 17:20
已编辑
门头沟学院 研发工程师
题解 | [Java] #记票统计#
import java.io.*; import java.util.*; public class Main { public static void main (String [] args) throws IOException { BufferedReader f = new BufferedReader(new InputStreamReader(System.in)); PrintWriter out = new PrintWriter(new BufferedWriter(new OutputStreamWriter(System.out...
0
点赞
评论
收藏
分享
2021-08-20 16:55
已编辑
门头沟学院 研发工程师
题解 | #完全数计算#
import java.io.*; import java.util.*; public class Main { /************************* 功能: 求出n以内的自守数的个数 输入参数: int n 返回值: n以内自守数的数量。 */ &...
0
点赞
评论
收藏
分享
2021-08-20 14:14
已编辑
门头沟学院 研发工程师
题解 | #完全数计算#
import java.io.*; import java.util.*; public class Main { public static void main (String [] args) throws IOException { // Use BufferedReader rather than RandomAccessFile; it's much faster BufferedReader f = new BufferedReader(new InputStreamReader(System.in)); PrintWri...
0
点赞
评论
收藏
分享
2021-08-20 14:15
已编辑
门头沟学院 研发工程师
题解 | #杨辉三角的变形#
import java.io.*; import java.util.*; public class Main { // 这里是有规律的 // -1 -1 2 3 2 4 2 3 2 4 ... private static int[] arr = {2, 3, 2 ,4}; public static void main (String [] args) throws IOException { // Use BufferedReader rather than RandomAccessFile; it's much faster ...
0
点赞
评论
收藏
分享
2021-06-26 16:06
门头沟学院 研发工程师
题解 | #子数组的最大累加和问题#
public class Solution { /** * max sum of the subarray * @param arr int整型一维数组 the array * @return int整型 */ public int maxsumofSubarray (int[] arr) { // sum 表示该位置前一个的和 int sum = 0, max = 0; for (int i = 0; i < arr.length; i++) { ...
0
点赞
评论
收藏
分享
2021-06-26 15:51
门头沟学院 研发工程师
题解 | #实现二叉树先序,中序和后序遍历#
public class Solution { public void merge(int A[], int m, int B[], int n) { // i表示数组A的索引,j表示数组B的索引 int i&...
0
点赞
评论
收藏
分享
2021-06-25 20:29
门头沟学院 研发工程师
题解 | #实现二叉树先序,中序和后序遍历#
import java.util.*; /* * public class TreeNode { * int val = 0; * TreeNode left = null; * TreeNode right = null; * } */ public class Solution { /** * * @param root TreeNode类 the root of binary tree * @return int整型二维数组 */ public int[][] threeOrders (TreeNode...
0
点赞
评论
收藏
分享
2021-06-25 17:15
已编辑
门头沟学院 研发工程师
题解 | #排序#
import java.util.*; /* * public class ListNode { * int val; * ListNode next = null; * } */ public class Solution { /** &n...
0
点赞
评论
收藏
分享
2021-06-24 22:08
门头沟学院 研发工程师
题解 | #排序#
重写了归并排序,刚好复习排序算法,开始先创建一个辅助数组,提高效率 import java.util.*; public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * 将给定数组排序 * @param arr int整型一维数组 待排序的数组 * @return int整型一维数组 */ public int[] MySort (int[] arr) { int[] aux = new int[arr.length]; ...
0
点赞
评论
收藏
分享
1
4
5
6
7
8
11
关注他的用户也关注了:
牛客网
牛客企业服务