Algo corner
(Move to ...)
Home
Table of Contents
Updates
▼
Tuesday, 31 December 2019
std::next_permutation(arr.begin(),arr.end());
›
What is next_permutation(a.begin(),a.end()) ? Next permutation is like what its name says, finds the next permutation of a and assigns ...
Friday, 27 December 2019
C++ Tutorial - Variables
›
So what is a variable ? In computer science (not only in C++) a variable is a storage location. In C++, every variable has a data t...
Sunday, 25 August 2019
Extensions of GNU
›
Here are some extensions that I have found. Some of them are more useful than others. indexed set power(x,y) rope indexed set is j...
Monday, 12 August 2019
Unofficial Editorial - August Challenge 2019 Div 2 - CodeChef
›
I really enjoyed this contest ! The questions were nice and I had a lot of time to do them. So here I want to share my approaches to the pro...
4 comments:
Sunday, 11 August 2019
__int128_t and __float128 in GNU
›
Usage of __int128_t: supports really big intermediate numbers, from -2^128 + 1 to 2^128 - 1 it has 128 bits Usage of __float128 : ...
Tuesday, 23 July 2019
Fastest way to read input from stdin C++
›
Method 1 : A noob's way : #include <iostream> using namespace std; int main(){ int nb,a; cin >>...
›
Home
View web version