Skip to content

Commit

Permalink
added codes
Browse files Browse the repository at this point in the history
  • Loading branch information
ajay-dhangar committed Jun 21, 2024
1 parent a6dc4ec commit 4a6aa16
Show file tree
Hide file tree
Showing 10 changed files with 43 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ BASE_URL =
ALGOLIA_API_KEY =
ALGOLIA_APP_ID =
GTM_ID =
GA_ID =
GA_ID =
3 changes: 1 addition & 2 deletions dsa-solutions/lc-solutions/0000-0099/0001-two-sum.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
id: 01-two-sum
id: two-sum
title: Two Sum Solution
sidebar_label: 0001 - Two Sum
tags:
Expand Down Expand Up @@ -578,7 +578,6 @@ The hash table approach is the most efficient and is recommended for large input
:::



---

<h2>Authors:</h2>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
id: 02-add-two-numbers
id: add-two-numbers
title: Add Two Numbers Solution
sidebar_label: 0002 - Add Two Numbers
tags:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
id: 03-longest-substrings-without-repeating-characters
id: longest-substrings-without-repeating-characters
title: Longest Substring Without Repeating Characters (LeetCode)
sidebar_label: 0003 - Longest Substring Without Repeating Characters
tags:
Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ The goal of this code is to find the maximum average value of any contiguous sub
1. **Initialization:**

- Create a variable result to store the maximum average.
- Create a variable number and initialize it to the lowest possible double value using std::numeric_limits<double>::lowest().
- Create a variable number and initialize it to the lowest possible double value using `std::numeric_limits<double>::lowest()`.
- Create a variable temp to keep track of the current sum of the subarray of length k.
- Create a variable n and set it equal to k.

Expand Down
40 changes: 32 additions & 8 deletions src/data/tweets.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ const TWEETS: TweetItem[] = [
date: "May 28, 2024",
content: (
<>
Can&apos;t believe how much I&apos;ve learned from @CodeHarborHub in just a few
weeks. Their hands-on projects are amazing! #WebDevelopment
Can&apos;t believe how much I&apos;ve learned from @CodeHarborHub in
just a few weeks. Their hands-on projects are amazing! #WebDevelopment
#CodeHarborHub
</>
),
Expand All @@ -44,7 +44,9 @@ const TWEETS: TweetItem[] = [
date: "May 28, 2024",
content: (
<>
Loving the data science courses on @CodeHarborHub. It&apos;s all free and ad-free. Perfect for anyone looking to upskill. #DataScience #FreeLearning
Loving the data science courses on @CodeHarborHub. It&apos;s all free
and ad-free. Perfect for anyone looking to upskill. #DataScience
#FreeLearning
</>
),
showOnHomepage: true,
Expand All @@ -57,7 +59,9 @@ const TWEETS: TweetItem[] = [
date: "May 28, 2024",
content: (
<>
Joined @CodeHarborHub last month and already feel more confident in my coding skills. Great community and resources! #TechCommunity #WomenInTech
Joined @CodeHarborHub last month and already feel more confident in my
coding skills. Great community and resources! #TechCommunity
#WomenInTech
</>
),
showOnHomepage: true,
Expand All @@ -70,7 +74,9 @@ const TWEETS: TweetItem[] = [
date: "May 28, 2024",
content: (
<>
Shoutout to @CodeHarborHub for providing such quality education for free! Their courses have been a game-changer for me. #TechSkills #CareerGrowth
Shoutout to @CodeHarborHub for providing such quality education for
free! Their courses have been a game-changer for me. #TechSkills
#CareerGrowth
</>
),
showOnHomepage: true,
Expand All @@ -83,20 +89,38 @@ const TWEETS: TweetItem[] = [
date: "May 28, 2024",
content: (
<>
Just finished the Python course on @CodeHarborHub. The explanations were clear and easy to follow. Ideal for beginners! #Python #CodeHarborHub
Just finished the Python course on @CodeHarborHub. The explanations were
clear and easy to follow. Ideal for beginners! #Python #CodeHarborHub
</>
),
showOnHomepage: true,
githubUsername: "CodeMaster",
},
{
url: "https://x.com/CodesWithAjay/status/1795486727077007869",
url: "/",
handle: "...",
name: "Samar Jeet Yadav",
date: "Jun 21, 2024",
content: (
<>
I want to promote this type of amazing learning source. Because this is
totally open resource anyone can easily go on website and learn a lot
different types of course form zero to advance level...
</>
),
showOnHomepage: true,
githubUsername: "",
},
{
url: "/",
handle: "AI_Enthusiast",
name: "AI_Enthusiast",
date: "May 28, 2024",
content: (
<>
If you&apos;re looking to learn AI and machine learning, @CodeHarborHub is the place to be. Comprehensive and free! #MachineLearning #AI #CodeHarborHub
If you&apos;re looking to learn AI and machine learning, @CodeHarborHub
is the place to be. Comprehensive and free! #MachineLearning #AI
#CodeHarborHub
</>
),
showOnHomepage: true,
Expand Down
6 changes: 6 additions & 0 deletions src/database/sponsors/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,12 @@ const sponsors: Sponsor[] = [
github: "https://github.com/mrmohdarif",
linkedin: "https://www.linkedin.com/in/mohd-arif-115b87231/",
},
{
name: "Samar Jeet Yadav",
image: "/sponsors/samar-jeet-yadav.jpg",
description: "...",
linkedin: "https://www.linkedin.com/in/samar-jeet-yadav-699224204/",
},
];

export default sponsors;
Binary file added static/sponsors/samar-jeet-yadav.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 4a6aa16

Please sign in to comment.