Skip to content

Instantly share code, notes, and snippets.

@amitkumarj441
amitkumarj441 / keybase.md
Last active August 21, 2016 11:16
Keybase account

Keybase proof

I hereby claim:

  • I am amitkumarj441 on github.
  • I am amitkumarjaiswal (https://keybase.io/amitkumarjaiswal) on keybase.
  • I have a public key whose fingerprint is 2E5D 9779 AD08 5EE7 AC29 DC41 EBE7 39F0 0427 4A2C

To claim this, I am signing this object:

@amitkumarj441
amitkumarj441 / siat.cpp
Last active August 13, 2016 12:17
Sums in a Triangle
#include <iostream>
int main()
{
int x,l,m,n;
std::cin >> x;
int y[x][x];
while(x--)
{
std::cin >> n;
@amitkumarj441
amitkumarj441 / sn.cpp
Last active August 3, 2016 19:33
Program in C++ to convert string to number.
// Author: Amit Kumar Jaiswal
// Twitter: @amit_gkp
#include<iostream>
#include<string>
#include<cstdlib>
using namespace std;
long hex2int(const string& hexStr)
{
@amitkumarj441
amitkumarj441 / frontendDevlopmentBookmarks.md
Created June 6, 2016 13:19 — forked from dypsilon/frontendDevlopmentBookmarks.md
A badass list of frontend development resources I collected over time.