Skip to content
View Shrishti-Saraswat's full-sized avatar
🎯
Focusing
🎯
Focusing
  • Haldia

Block or report Shrishti-Saraswat

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 Loading

  1. Railway-API Railway-API Public

    A simple version of IRCTC app which will provide with the route of the train with a particular train no along with its schedule arrival and schedule departure at a particular station.

    Python

  2. HackerRank-Practice-Python HackerRank-Practice-Python Public

    This repository contains the solutions to all the coding problems,in the Python practice available in the hackerRank.

    Python 1

  3. Tic-Tac-Toe game which uses the basi... Tic-Tac-Toe game which uses the basic applications of AI in which the user will play against the computer.
    1
    
                  
    2
    board = [' ' for x in range(10)]
    3
    
                  
    4
    def insertLetter(letter,pos):
    5
        board[pos] = letter