Skip to content

Instantly share code, notes, and snippets.

View ShubhamKJha's full-sized avatar
🐢
exploring stuffs

Shubham Kumar Jha ShubhamKJha

🐢
exploring stuffs
  • Flipkart
  • National Institute of Technology Agartala
  • 21:53 (UTC -12:00)
View GitHub Profile
@ShubhamKJha
ShubhamKJha / hacker_earth_python.py
Last active August 10, 2020 12:21
The Rainy Season
'''
The solution for Hackerearth problem: The Rainy Season.
https://www.hackerearth.com/problem/algorithm/bfs-waali-7409c2ca-c1be890b/description/
The problem is not hard, but due to the limitation of recursion limit
in Python, we sometimes need to make different approaches.
Here, I've tried an iterative approach.
'''
# Write your code here
@ShubhamKJha
ShubhamKJha / python_template.py
Created May 25, 2020 12:01
Template for FastIO --- Python in CP
#!/usr/bin/env python
from __future__ import division, print_function
import os
import sys
from io import BytesIO, IOBase
if sys.version_info[0] < 3:
from __builtin__ import xrange as range
from future_builtins import ascii, filter, hex, map, oct, zip
@ShubhamKJha
ShubhamKJha / python-solutions.md
Last active May 23, 2020 06:27
Some interesting implementions
@ShubhamKJha
ShubhamKJha / GSoC-2019-Report.md
Created August 25, 2019 03:02
GSoC 2019 Final Report ( by Shubham Kumar Jha) ( project: Improvement Assumptions) ( Org: SymPy)

GSoC 2019 Report

This Wiki summarises the work I have done during GSoC 2019 for SymPy.

About Me

My name is Shubham Kumar Jha. I am currently a final year undergraduate student at National Institute of Technology Agartala, India, in the department of Computer Science & Engineering.

Project Outline