Skip to content
View kishan-dhankecha's full-sized avatar
🚀
Available for work
🚀
Available for work
  • Gujarat, India.
  • 23:06 (UTC +05:30)

Highlights

  • Pro
Block or Report

Block or report kishan-dhankecha

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
kishan-dhankecha/README.md
// Hello world!

const dev = Developer(
  name : 'Kishan Dhankecha',
  pronouns: ['He', 'Him'],
  mail : 'dhankechakishan@gmail.com',
  tech : ['Flutter', 'NodeJS'],
  interests: ['Playing Minecraft', 'Listening Music'],
);

Kishan's StackOverflow

Pinned

  1. blurrycontainer blurrycontainer Public

    A Flutter package to create a frosted glass effect on a container.

    Dart 27 10

  2. RepoStar RepoStar Public

    Production-grade project developed during the Reso Coder Academy Flutter Bootcamp: It's a mobile Github repository viewer

    Dart 8

  3. sudoku-dart sudoku-dart Public

    Command Line Sudoku Generator with Dart Programming language

    Dart 2

  4. vegcart vegcart Public

    Flutter demo app with Provider state management. Includes Multiple Theme options.

    Dart 18 6

  5. Grid Traveler function with memoizat... Grid Traveler function with memoization [JAVASCRIPT]
    1
    /// Say that you are a traveler on a 2D grid. You begin in the
    2
    /// top-left corner and your goal is to travel to the bottom-right
    3
    /// corner. You may only move down or right.
    4
    
                  
    5
    /// In how many ways can you travel to the goal on a grid with
  6. Subset Sum function with memoization... Subset Sum function with memoization [JAVASCRIPT]
    1
    /// Write a function 'canSum( targetSum, numbers)' that takes in a
    2
    /// targetSum and an array of numbers as arguments.
    3
    
                  
    4
    /// The function should return a boolean indicating whether or not it
    5
    /// is possible to generate the targetSum using numbers from the array.