codedecent codedecent
2年前
这道SQL有一点...不一样?
原题目从课程表(课程号,课程名)学生表(学号,年龄,性别,课程号,分数)中查询出平均分大于60分的学生的学号及课程成绩最初尝试一开始不太会做,直接在网络上搜索答案,找到的却只有这样的题目答案sqlSELECTsid,AVG(sscore)FROMscoreGROUPBYsidHAVINGavg(sscore)60单表操作
Stella981 Stella981
3年前
LeetCode 007 Reverse Integer
题目描述:ReverseIntegerReversedigitsofaninteger.Example1: x123,return321Example2: x123,return321Haveyouthoughtaboutthis?Herearesomegoodquestions
Easter79 Easter79
3年前
Succinct Data Structure
作者:唐刘最近看了一篇论文 SuRF:PracticalRangeQueryFilteringwithFastSuccinctTries(https://www.oschina.net/action/GoToLink?urlhttps%3A%2F%2Fdb.cs.cmu.edu%2Fpapers%2F2018%2Fmod601
Stella981 Stella981
3年前
Attribute
(摘自王逍同学的论文arxiv2019PedestrianAttributeRecognitionASurvey(https://www.oschina.net/action/GoToLink?urlhttps%3A%2F%2Fwww.cnblogs.com%2Fwangxiaocvpr%2Fp%2F10162679.html))1\.
Stella981 Stella981
3年前
ResNet
ResNet论文地址:http://arxiv.org/abs/1512.03385(https://www.oschina.net/action/GoToLink?urlhttp%3A%2F%2Farxiv.org%2Fabs%2F1512.03385)GitHub源码:https://github.com/tensorflo
Wesley13 Wesley13
3年前
9999二进制 及 x=x&(x
题目:以下代码结果是多少?\include<iostreamusingnamespacestd;int func(int x){int count\0;while(x){count;x\x&(x\1);
Wesley13 Wesley13
3年前
2020 春招 华为笔试 2月26日
时间是两个小时,总共三道编程题目。第一道题目大意:  输入一个int类型的数,判断它的比特流中有多少个“010”,及第一个“101”的下标(这个下标是从低位向高位数的)。  如:输入:21      输出  20    原因:21 二进制表示为 00000000000000000000000000010101
Stella981 Stella981
3年前
GYM 101755 K.Video Reviews 【贪心】+【二分】
<题目链接(https://www.oschina.net/action/GoToLink?urlhttp%3A%2F%2Fcodeforces.com%2Fgym%2F101755%2Fproblem%2FK)\题目大意:一家公司想让n个人给他们的产品评论,所以依次去找这n个人,第i个人会评论当且仅当已经有ai个人评论或他确
Stella981 Stella981
3年前
JavaScript 中 this 是如何工作的 ?
先来看看这个题目:varx0;varfoo{x:1,bar:{x:2,baz:function(){console.log(this.x)}}}
Python进阶者 Python进阶者
1年前
盘点一个Python递归的基础题目
大家好,我是皮皮。一、前言前几天在Python黄金群【维哥】问了一个Python递归的基础问题,一起来看看吧。看上去代码没多少哈,但是韵味无穷。二、实现过程很多初学者遇到这个问题,很容易把答案说成是3,2,2这样,其实正好相反,这里【巭孬嫑勥烎】给了一个解