Skip to content

Instantly share code, notes, and snippets.

View abhinpai's full-sized avatar
🎯
Focusing

Abhin Pai abhinpai

🎯
Focusing
View GitHub Profile

Honeywell International Technology

Software Engineer I India (July 2018 - December 2021) Software Engineer II USA (December 2021 - Present)

Think201

Mobile Application Developer Intern India (Jan 2018 - May 2018)

Technology that I have already worked on

  • 🔮 Vanilla Javascript: The Godfather of the frontend world
  • ⚛️ React: A lightweight front end library
  • 🖼 CSS and SCSS: To dress an app
  • 📦 Docker: Containrizing platform
  • 🚀 Openshift: Container Orchestration
  • 📱 Flutter: Fast-growing hybrid framework
  • 🧮 Neo4j: Graph Database
  • 📨 MobX: State Management Library
  • 🗃 C# .netcore: Language and framework for backend development
For Veriosn 3.0 and Build 3143
—– BEGIN LICENSE —–
TwitterInc
200 User License
EA7E-890007
1D77F72E 390CDD93 4DCBA022 FAF60790
61AA12C0 A37081C5 D0316412 4584D136
94D7F7D4 95BC8C1C 527DA828 560BB037
D1EDDD8C AE7B379F 50C9D69D B35179EF
@abhinpai
abhinpai / kindergartenAdventure_studycodeA.cs
Created September 4, 2017 15:46 — forked from jianminchen/kindergartenAdventure_studycodeA.cs
HackerRank university codesprint - kindergarten adventure - study code - score 30 (Maximum score 30) - segment tree
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
class Solution {
static void Main(String[] args) {
int n = int.Parse(Console.ReadLine());
int[] A = Array.ConvertAll(Console.ReadLine().Split(' '), int.Parse);
int[] w = new int[n];