Open in app

Sign In

Write

Sign In

Tish Faroul
Tish Faroul

8 Followers

Home

About

Oct 31, 2022

How to Create a pull request in GitHub

I recently participated in my first Hacktoberfest!, which gave me the excuse to get into contributing to open-source projects. If you haven’t already, you should consider contributing to open-source projects as they give you the opportunity to network with other developers and companies and learn from the projects you contribute…

Pull Request

2 min read

How to Create a pull request in GitHub
How to Create a pull request in GitHub
Pull Request

2 min read


Sep 15, 2022

Solving Leetcode 69: Sqrt(x) (JavaScript)

Today, I’m working on learning about how to solve Leetcode 69: Sqrt(x) The Problem: Given a non-negative integer x, compute and return the square root of x. Since the return type is an integer, the decimal digits are truncated, and only the integer part of the result is returned. Note…

JavaScript

3 min read

Solving Leetcode 69: Sqrt(x) (JavaScript)
Solving Leetcode 69: Sqrt(x) (JavaScript)
JavaScript

3 min read


Aug 28, 2022

A Guide to Setting up a MongoDB Cloud Database

In an effort to expand and keep growing my knowledge, I’ve taken up learning Node.js to further build my backend skills. If you’ve dipped your toes into the backend, I’m sure you’ve come across references to MongoDB. What is MongoDB? MongoDB is a NoSQL database — meaning that it uses collections and documents…

Mongodb

5 min read

A Guide to Setting up a MongoDB Cloud Database
A Guide to Setting up a MongoDB Cloud Database
Mongodb

5 min read


Aug 2, 2022

Solving Remove Duplicates from Sorted Array in JavaScript!

Today, we’re going to be solving Leetcode’s Problem #26, Remove Duplicates from Sorted Array. The Problem Statement:

Leetcode

3 min read

Solving Remove Duplicates from Sorted Array in JavaScript!
Solving Remove Duplicates from Sorted Array in JavaScript!
Leetcode

3 min read


Jul 28, 2022

GitHub and why every techie (not just developers!) should use it

What is GitHub? GitHub is an open-source site that provides users with tools to manage their projects and documentation. Developers can store and show off their code — and allow other users, from all over the world, to view and even improve on it. Through it, you can share your code and collaborate…

Github

2 min read

GitHub and why every techie (not just developers!) should use it
GitHub and why every techie (not just developers!) should use it
Github

2 min read


Jul 20, 2022

Solving Leetcode 217: Contains Duplicate (JavaScript)

I’m working on another easy one today, “Contains Duplicate”. I’m proud of myself for how far I had gotten on my own with this one. (I’m getting better~ 😊) The Problem: Given an integer array nums, return true if any value appears at least twice in the array, and return…

JavaScript

2 min read

Solving Leetcode 217: Contains Duplicate (JavaScript)
Solving Leetcode 217: Contains Duplicate (JavaScript)
JavaScript

2 min read


Jul 14, 2022

Solving Leetcode: 66 Plus One in JavaScript

The Problem:

JavaScript

2 min read

Solving Leetcode: 66 Plus One in JavaScript
Solving Leetcode: 66 Plus One in JavaScript
JavaScript

2 min read


Jul 11, 2022

Solving Leetcode 20: Valid Parentheses in JavaScript

The Problem: Given a string s containing just the characters '(', ')', '{', '}', '[' and ']', determine if the input string is valid. An input string is valid if: Open brackets must be closed by the same type of brackets. Open brackets must be closed in the correct order. …

JavaScript

2 min read

Solving Leetcode 20: Valid Parentheses in JavaScript
Solving Leetcode 20: Valid Parentheses in JavaScript
JavaScript

2 min read


Jun 27, 2022

Leetcode 9: Palindrome Number (JS)

Solution: //change the number to a string and reverse //to string will have to be split and joined back together // then, we have to compare it to the original string var isPalindrome = function(x){ return x.toString().split("").reverse().join("") === x.toString() }; ✨✨✨And that’s it! Tish⚡️🎧🌙

JavaScript

1 min read

Leetcode 9: Palindrome Number (JS)
Leetcode 9: Palindrome Number (JS)
JavaScript

1 min read


Jun 24, 2022

Leetcode: Two Sum (JS)

Example 1: Input: nums = [2,7,11,15], target = 9 Output: [0,1] Explanation: Because nums[0] + nums[1] == 9, we return [0, 1]. Understanding the problem: Per the example above, if we start with 2, and we want to reach 9 — we need to add 7 from the array. …

Leetcode

2 min read

Leetcode: Two Sum (JS)
Leetcode: Two Sum (JS)
Leetcode

2 min read

Tish Faroul

Tish Faroul

8 Followers

MHA grad & Tech Writer

Help

Status

Writers

Blog

Careers

Privacy

Terms

About

Text to speech

Teams