Skip to content
View kumarnitish378's full-sized avatar
👋
I may be slow to respond.
👋
I may be slow to respond.
Block or Report

Block or report kumarnitish378

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

Pinned

  1. Multiple-linear-regression Multiple-linear-regression Public

    This machine learning (ML) program is use to predict the price of the plot according to area of flat, bedroom in the flat,

    Jupyter Notebook 1

  2. DashBoard-for-raspberry-pi-GPIO-Pins DashBoard-for-raspberry-pi-GPIO-Pins Public

    This is a dashboard to control all the gpio pins of rasoberry pi. this contain GUI Interface

    Python 1

  3. Python-Graphics-Tkinter Python-Graphics-Tkinter Public

    This contain some tkinter program, i hope its help you.

    Python 1

  4. Slider-using-tkinter-python Slider-using-tkinter-python Public

    this simple slider

    Python 1

  5. Vestigium_code_cam_complete Vestigium_code_cam_complete Public

    Vestigium means "trace" in Latin. In this problem we work with Latin squares and matrix traces. The trace of a square matrix is the sum of the values on the main diagonal (which runs from the upper…

    Python 1

  6. program to trace sum of diagonal in ... program to trace sum of diagonal in a N*N matrix as well as count how many row or colon elements repeated.
    1
    from sys import stdin, stdout
    2
    n  = int(stdin.readline().strip()) # Read number of test case
    3
    flist = []
    4
    a = 1
    5
    for i in range(n+1):