摘要:
##思路 快速幂模板题 ##AC代码 #include<bits/stdc++.h> using namespace std; typedef long long ll; #define inf 0x3f3f3f3f const int mod=10; void ksm(ll x,ll n) { l 阅读全文
摘要:
##题目链接 https://leetcode-cn.com/problems/employees-earning-more-than-their-managers/ ##AC代码 select x.Name as 'Employee' from Employee as x,Employee as 阅读全文
摘要:
##题目链接 https://leetcode-cn.com/problems/combine-two-tables/ ##题解 看LeetCode上的就行,很详细也有扩充。 ##AC代码 select FirstName, LastName, City, State from Person lef 阅读全文