Skip to content

resolved live coding in dsa solution #289

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

Merged
merged 1 commit into from
May 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
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
12 changes: 6 additions & 6 deletions dsa-solutions/lc-solutions/0000-0099/0001-two-sum.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,10 +95,10 @@ function twoSumProblem() {
return (
<div>
<p>
<b>Input:</b> nums = {("[", nums.join(", "), "]")}, target = {target}
<b>Input:</b> nums = {("["+ nums.join(", ")+ "]")}, target = {target}
</p>
<p>
<b>Output:</b> {("[", result.join(", "), "]")}
<b>Output:</b> {("["+ result.join(", ")+ "]")}
</p>
</div>
);
Expand Down Expand Up @@ -233,10 +233,10 @@ function twoSumProblem() {
return (
<div>
<p>
<b>Input:</b> nums = {("[", nums.join(", "), "]")}, target = {target}
<b>Input:</b> nums = {("["+ nums.join(", ")+ "]")}, target = {target}
</p>
<p>
<b>Output:</b> {("[", result.join(", "), "]")}
<b>Output:</b> {("["+ result.join(", ")+ "]")}
</p>
</div>
);
Expand Down Expand Up @@ -391,10 +391,10 @@ function twoSumProblem() {
return (
<div>
<p>
<b>Input:</b> nums = {("[", nums.join(", "), "]")}, target = {target}
<b>Input:</b> nums = {("["+ nums.join(", ")+ "]")}, target = {target}
</p>
<p>
<b>Output:</b> {("[", result.join(", "), "]")}
<b>Output:</b> {("["+ result.join(", ")+ "]")}
</p>
</div>
);
Expand Down
6 changes: 0 additions & 6 deletions src/pages/showcase/_components/ShowcaseCard/index.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,3 @@
/**
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/

import React from 'react';
import clsx from 'clsx';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,10 +69,6 @@
font-size: smaller;
line-height: 1.66;
}
li:hover{
scale: 1.05;
transition: scale 0.5s;
}

.cardFooter {
display: flex;
Expand Down
Loading