A Pen by Natalia B. (Theg) on CodePen.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--Description: | |
--Julia asked her students to create some coding challenges. | |
--Write a query to print the hacker_id, name, and the total number of challenges created by each student. | |
--Sort your results by the total number of challenges in descending order. | |
--If more than one student created the same number of challenges, then sort the result by hacker_id. | |
--If more than one student created the same number of challenges and the count is less than the maximum number | |
--of challenges created, then exclude those students from the result. | |
--Solution: | |
-- first create grouped table |
A Pen by Natalia B. (Theg) on CodePen.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<head> | |
<script src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script> | |
<!-- Font awesome icon link --> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"> | |
<title>Pomodoro Clock</title> | |
</head> | |
<body > |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<head> | |
<script src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script> | |
<!-- Font awesome icon link --> | |
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"> | |
<title>Pomodoro Clock</title> | |
</head> | |
<body > | |
<div class="App"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<head> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<link href="https://fonts.googleapis.com/css2?family=Fondamento&family=Grenze+Gotisch:wght@700&display=swap" rel="stylesheet"> | |
<script src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script> | |
<link rel="stylesheet" type="text/css" href="style.css"> | |
<title>tribute page</title> | |
</head> | |
<body> | |
<div id="main"> |
A Pen by Natalia B. (Theg) on CodePen.
A Pen by Natalia B. (Theg) on CodePen.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script> | |
<body> | |
<!-- Calculation display area --> | |
<div class="App"> | |
<div class="wrapper"> | |
<div class="row"> | |
<input type="text" name ="display" id="display" disabled /> | |
</div> |
A Pen by Natalia B. (Theg) on CodePen.
NewerOlder