牛客6842662号
牛客6842662号
全部文章
分类
归档
标签
去牛客网
登录
/
注册
牛客6842662号的博客
全部文章
(共9篇)
题解 | #有效括号序列#
import java.util.*; public class Solution { /** * * @param s string字符串 * @return(756076230) bool布尔型 */ public boolean ...
2023-01-09
0
250
题解 | #合并两个排序的链表#
/* public class ListNode { int val; ListNode next = null; ListNode(int val) { this.val = val; } }*/ public class Solution { ...
2023-01-08
0
235
题解 | #nginx日志分析3-统计访问3次以上的IP#
#!/bin/bash #file=/dir1/dir2/dir3/my.file.txt #可以用${ }分别替换得到不同的值: #${file#*/}:删掉第一个 / 及其左边的字符串:dir1/dir2/dir3/my.file.txt #${file##*/}:删掉最后一个 / 及其左边的...
2023-01-01
0
272
题解 | #nginx日志分析2-统计某个时间段的IP#
#!/bin/bash result=$( cat < nowcoder.txt | grep '23/Apr/2020:2[0-3]:' | cut -d'-' -f1 | sort | uniq -c | wc -l ) echo "${result}" exit 0 cat filen...
2023-01-01
0
264
题解 | #打印文件的最后5行#
#!/bin/bash tail -n 5 nowcoder.txt exit 0 #cat直接看,一次性输出 -b -n显示行号,前者不包括空白行。 常用格式 cat fileName | grep 目标字符#tail -n(行数) 文件名#more可翻页查看,非一次性输出;空格翻页...
2023-01-01
0
307
题解 | #统计文件的行数#
#!/bin/bash wcResut=$( wc -l nowcoder.txt) index=0 lineNumber=0 for item in $wcResut do i=$(( i + 1 )) if ((i==1)); then lineNumb...
2023-01-01
0
262
题解 | #计算25岁以上和以下的用户数量#
select (case when age>=25 then '25岁及以上' when age>=0 and age<25 or age is NULL then '25岁以下' end ) ...
2022-12-24
0
279
题解 | #查找山东大学或者性别为男生的信息#
select device_id,gender,age,gpa from `user_profile` where university = '山东大学' union all select device_id,gender,age,gpa from `user...
2022-12-23
0
195
题解 | #统计每个学校的答过题的用户的平均答题数#
select up.university,format(count(qpd.question_id)/count(distinct qpd.device_id),4) as avg_answer_cnt from `user_profile` up inner join `question_...
2022-12-23
0
367