amrendra.in amrendra.in

amrendra.in

Amrendra Kumar | thecodegame

Amrendra Kumar | thecodegame | Student, Maulana Azad National Institute of Technology, Bhopal

http://www.amrendra.in/

WEBSITE DETAILS
SEO
PAGES
SIMILAR SITES

TRAFFIC RANK FOR AMRENDRA.IN

TODAY'S RATING

>1,000,000

TRAFFIC RANK - AVERAGE PER MONTH

BEST MONTH

September

AVERAGE PER DAY Of THE WEEK

HIGHEST TRAFFIC ON

Monday

TRAFFIC BY CITY

CUSTOMER REVIEWS

Average Rating: 4.4 out of 5 with 15 reviews
5 star
9
4 star
3
3 star
3
2 star
0
1 star
0

Hey there! Start your review of amrendra.in

AVERAGE USER RATING

Write a Review

WEBSITE PREVIEW

Desktop Preview Tablet Preview Mobile Preview

LOAD TIME

1 seconds

FAVICON PREVIEW

  • amrendra.in

    16x16

  • amrendra.in

    32x32

CONTACTS AT AMRENDRA.IN

Login

TO VIEW CONTACTS

Remove Contacts

FOR PRIVACY ISSUES

CONTENT

SCORE

6.2

PAGE TITLE
Amrendra Kumar | thecodegame | amrendra.in Reviews
<META>
DESCRIPTION
Amrendra Kumar | thecodegame | Student, Maulana Azad National Institute of Technology, Bhopal
<META>
KEYWORDS
1 Amrendra
2 Kumar
3 programming
4 coding
5 data
6 strucuture
7 algorithms
8 web
9 designer
10 maulana
CONTENT
Page content here
KEYWORDS ON
PAGE
begin ;,profile,skills,blog,gallery,hello,facebook,linkedin,google,eleanor roosevelt
CONTENT-TYPE
iso-8859-1
GOOGLE PREVIEW

Amrendra Kumar | thecodegame | amrendra.in Reviews

https://amrendra.in

Amrendra Kumar | thecodegame | Student, Maulana Azad National Institute of Technology, Bhopal

INTERNAL PAGES

amrendra.in amrendra.in
1

Skills | Amrendra Kumar

http://www.amrendra.in/skills

As a student of Computer Science, I have developed very keen interest in programming, and its application in software development. I am always eager to learn new things. Winners take time to relish their work, knowing that scaling the mountain is what makes the view from the top so exhilarating.

2

Gallery | Amrendra Kumar

http://www.amrendra.in/gallery

Few pics that describes me. Find me on » CodeChef. It's Not How Good You Are, It's How Good You Want to Be.

3

Amrendra Kumar | thecodegame

http://www.amrendra.in/index.php

I have no special talent,. I am only passionately curious. My name is Amrendra Kumar. Welcome to my home on the web! I am a tireless knowledge seeker who loves programming, and a lot of it. At present, I am working as a Software Engineer at Samsung R&D Institute Bangalore. I simply love programming and like solving programming questions on spoj, and the monthly long algorithm challenge and cookoffs at CodeChef with username thecodegame. Site update coming soon. Find me on » CodeChef.

4

Blog | Amrendra Kumar

http://www.amrendra.in/blog

Blog on Programming, Data Structures, and Algorithms by thecodegame ;-) here. Find me on » CodeChef. Whether you think that you can, or that you can't, you are usually right.

5

Profile | Amrendra Kumar | thecodegame

http://www.amrendra.in/profile

Work always goes on . Developed a chrome extension, which can be used to check users global ranks in various codechef contests. Ranked 1st at CodeSprint: Evernote Aug 12. Ranked 1st at CodeSprint: HACKERRANK July 12. CodeChef hosts monthly 10days Long Algorithm Challenge with participations from students and professionals across the world. Current Long Rank: 16th in India. As in Aug 2012) Username: thecodegame. June12 Monthly Long Challenge by CodeChef. Ranked 7th in India. Ranked 12th in India.

UPGRADE TO PREMIUM TO VIEW 0 MORE

TOTAL PAGES IN THIS WEBSITE

5

LINKS TO THIS WEBSITE

codechef.com codechef.com

CodeChef User | CodeChef

https://www.codechef.com/users/thecodegame

Code, Compile and Run. FAQ for problem setters. Top Contributors on Discuss. Raquo; Amrendra Kumar. Life begins at the end of your comfort zone. Global Rank / Country Rank. Your rank is calculated by considering 'India' as your country code. Program should read from standard input. And write to standard output. After you submit a solution you can see your results by clicking on the [My Submissions]. Tab on the problem page. Below are the possible results:. The time now is:. At the start of the month and ...

thecodegame.wordpress.com thecodegame.wordpress.com

Prime Numbers by Sieve of Eratosthenes | theCodeGame

https://thecodegame.wordpress.com/2013/03/29/prime-numbers-by-sieve-of-eratosthenes

Let the coding begin …. Prime Numbers by Sieve of Eratosthenes. March 29, 2013. The algorithm works as follows. 1 Create a vector v of consecutive integers {2,3, LIMIT}. 2 Select p as the first prime number in the vector v, p=2. 3 Remove all multiples of p from the vector v. 4 set p equal to the next integer in vector v which has not been removed. 5 Repeat steps 3 and 4 until p. LIMIT, all the remaining numbers in the vector v are prime numbers. More about the algorithm here. And tagged Prime Numbers.

thecodegame.wordpress.com thecodegame.wordpress.com

Catalan Numbers | theCodeGame

https://thecodegame.wordpress.com/2012/09/14/catalan-numbers

Let the coding begin …. September 14, 2012. Catalan numbers form a sequence of natural numbers that occur in various counting problems. 1, 1, 2, 5, 14, 42, 132, 429, 1430, 4862, 16796, 58786, 208012, 742900, 2674440, 9694845, 35357670, 129644790, 477638700, 1767263190, 6564120420, 24466267020, 91482563640, 343059613650, 1289904147324, 4861946401452…. and so on. This sequence is very popular in many combinatorial problems. More on application of Catalan Numbers here. N 1) = 2n! We can also use this formula.

thecodegame.wordpress.com thecodegame.wordpress.com

Morris InOrder Tree Traversal, Tree Traversal without using extra space and without recursion | theCodeGame

https://thecodegame.wordpress.com/2012/09/13/morris-inorder-tree-traversal-tree-traversal-without-using-extra-space-and-without-recursion

Let the coding begin …. Morris InOrder Tree Traversal, Tree Traversal without using extra space and without recursion. September 13, 2012. We have the regular tree traversals that uses either recursion (function stack), or intentionally created stack to do the traversal in iterative way. But what do we do when we need to do a tree traversal without any extra space and without recursion. Can we think of getting to this node back by some way. Does Threaded Binary Tree. Here’s the C code. Ptr){ return; } / ...

thecodegame.wordpress.com thecodegame.wordpress.com

N numbers into 2N places | theCodeGame

https://thecodegame.wordpress.com/2012/09/13/n-numbers-into-2n-places

Let the coding begin …. N numbers into 2N places. September 13, 2012. Place N number from 1 to N, in 2N positions in such a way so that there are Exactly n. Number of cells between two placed locations of number n. One of the possible placement for 7 numbers in 14 positions is :. 0){ return permute(pos 1); } / go through all numbers FOR(i,1,N 1){ / if number is not used if(! Numbers[i]){ / if second place is in bound if(pos i 1 len&! This entry was posted in Backtracking. Catalan Numbers →.

thecodegame.wordpress.com thecodegame.wordpress.com

thecodegame | theCodeGame

https://thecodegame.wordpress.com/author/thecodegame

Let the coding begin …. Prime Numbers by Sieve of Eratosthenes. March 29, 2013. The algorithm works as follows. 1 Create a vector v of consecutive integers {2,3, LIMIT}. 2 Select p as the first prime number in the vector v, p=2. 3 Remove all multiples of p from the vector v. 4 set p equal to the next integer in vector v which has not been removed. 5 Repeat steps 3 and 4 until p. LIMIT, all the remaining numbers in the vector v are prime numbers. More about the algorithm here. Posted in Prime Numbers.

UPGRADE TO PREMIUM TO VIEW 1 MORE

TOTAL LINKS TO THIS WEBSITE

7

SOCIAL ENGAGEMENT



OTHER SITES

amrenboards.com amrenboards.com

Index of /

Apache Server at www.amrenboards.com Port 80.

amrencar.hu amrencar.hu

Amrencar

Ausztrál-Magyar Autókölcsönző Kft. Kecskemét, Felsőcsalános 112. Tel: 36 76 481 834. Mobil: 36 30 975 8229.

amrenconsulting.com amrenconsulting.com

American Renaissance Political Consulting Group

Artemio Muniz Featured In Wall Street Journal Article. April 17, 2015. Republican Party Wrestles With Immigration Stance as It Courts Hispanics. Texas fight over college benefits for immigrants highlights GOP split. HOUSTON Republicans here want to repeal the 14-year-old law that allows immigrants, legal or not, the benefit of in-state college tuition, and for Artemio Muniz, defending the law is both personal and political. Mr Muniz, 33 years old, is part salesman for the GOP and part agitator within it&...

amrendesign.se amrendesign.se

Amrén Design - En design- och webbyrå i Helsingborg

Modern mobilanpassning för en optimal upplevelse oavsett enhet. Jag hjälper gärna dig med. Responsiv webbdesign är en form av mobilanpassad hemsida som anpassar innehållet efter besökarens skärmstorlek. Pixlar i all ära, men ibland vill man lämna ifrån sig ett personligt visitkort eller säljblad. En lätthanterad webbshop med smidiga funktioner och snabb kassa är ett måste när det gäller e-handel. 3D-bilder är många gånger ett starkt alternativ till foto då man har full kontroll på form, färg och ljus.

amrendra.com amrendra.com

Best amrendra online

Amrendra info at amrendra.com. Online amrendra top website.

amrendra.in amrendra.in

Amrendra Kumar | thecodegame

I have no special talent,. I am only passionately curious. My name is Amrendra Kumar. Welcome to my home on the web! I am a tireless knowledge seeker who loves programming, and a lot of it. At present, I am working as a Software Engineer at Samsung R&D Institute Bangalore. I simply love programming and like solving programming questions on spoj, and the monthly long algorithm challenge and cookoffs at CodeChef with username thecodegame. Site update coming soon. Find me on » CodeChef.

amrendrayadav.com.np amrendrayadav.com.np

Amrendra Yadav – Photography

Sun Rise of Darjeeling-Tiger Hill. Decorate Rajdevi Mandir In Chaiti Dashain. Proudly powered by WordPress. Photo Perfect by WEN Themes.

amrenergia.com amrenergia.com

Manteniment d'equips SAI a Barcelona | Canvi de bateries SAI

Utilitzem cookies pròpies i de tercers, per realitzar l'anàlisi de la navegació dels usuaris. Si continues navegant, considerem que acceptes el seu ús. Pots canviar la configuració o obtenir més informació aquí. Manteniment d'equips SAI a Barcelona Canvi de bateries SAI. Manteniment d'equips SAI a Barcelona. Manteniment d'equips SAI a Barcelona. El nostre treball es basa en dos pilars bàsics: l'equip humà i la qualitat del servei. Manteniment d'equips SAI a Barcelona. Política de Cookies.

amrenergysolutions.com amrenergysolutions.com

Welcome amrenergysolutions.com - BlueHost.com

Web Hosting - courtesy of www.bluehost.com.

amrenewablespecialists.com amrenewablespecialists.com

AM Renewable Specialists Ltd - Health and Safety Specialists

H and S consultancy. Risk Assessment and Documentation. Offshore Health and Safety. Wind Farm Health and Safety. Dredging and Reclamation Works Health and Safety. Oil and Gas Health and Safety Management. AM Renewable Specialists Ltd - Renewable Energy H&S Consultants. Part of the AM Specialists Group Ltd. Health and Safety consultancy. Offshore Health and Safety.

amrengg.com amrengg.com

amrengg