AGAshi garginash56sciencefreaks.hashnode.dev路Jan 31, 2022 路 5 min readRecursion Part - 5In previous tutorials, we have solved some basic level problems on recursion. Hopefully, by now you must have understood how to approach the problem on recursion馃槑. In this tutorial we are going to solve a medium level problem Permutations of a given...01H
AGAshi garginash56sciencefreaks.hashnode.dev路Jan 27, 2022 路 4 min readRecursion Part-4In this tutorial we are going to solve Leetcode Problem number 344. Reverse String Problem statement: Write a function that reverses a string. The input string is given as an array of characters s. You must do this by modifying the input array in-p...00
AGAshi garginash56sciencefreaks.hashnode.dev路Jan 7, 2022 路 2 min readLeetcode problem number- 219Contains Duplicate II Problem description: Given an integer array nums and an integer k, return true if there are two distinct indices i and j in the array such that nums[i] == nums[j] and abs(i - j) <= k. Input: nums = [1,2,3,1], k = 3 Output: t...01H
AGAshi garginash56sciencefreaks.hashnode.dev路Dec 23, 2021 路 2 min readDjango Part-2Let's now start creating a project, Go to terminal and fire up the command: django-admin startproject mysite This will create a folder named "mysite" and a manage.py file: The manage.py file is a autogenerated file, which helps you to interact with...01H
AGAshi garginash56sciencefreaks.hashnode.dev路Dec 23, 2021 路 2 min readDjango Part-1What is Django? Django is a Python Web Framework. As you will dive deep, you will get to know that Django not only allows you create good web applications but it also takes care of security of your application, for example: -->Cross-site request...01H