Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added solution to lc:619 #747

Merged
merged 9 commits into from
Mar 13, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
updated readme
  • Loading branch information
Dhoni77 authored Mar 12, 2022
commit 82ecdff3377ece8b18e8f3272a43efcd64f02bba
9 changes: 8 additions & 1 deletion solution/0600-0699/0619.Biggest Single Number/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,14 @@ MyNumbers table:
### **SQL**

```sql

SELECT
MAX(a.num) nums
FROM (SELECT
num,
COUNT(*)
FROM biggestsinglenumber
GROUP BY num
HAVING COUNT(*) = 1) a;
```

<!-- tabs:end -->