|
Variant of Rod Cutting Problem (DP)
|
5
|
May 11, 2020
|
|
Quadratic Equation
|
8
|
May 9, 2020
|
|
#include<iostream> using namespace std; int main() { int n; cin>>n; int sum=n; while(sum>=0){ cout<<n<<endl; cin>>n; sum=sum+n; } return 0; }
|
1
|
May 9, 2020
|
|
N queens problem
|
1
|
May 8, 2020
|
|
Increasing decreasing sequence
|
1
|
May 8, 2020
|
|
Arrays sum of two arrays
|
4
|
May 8, 2020
|
|
/bin/run.sh: line 4: 18 Arithmetic exception (core dumped) ./exe
|
1
|
May 5, 2020
|
|
LOCKDOWN GAME DOUBT
|
1
|
May 4, 2020
|
|
Can someone give me a hint on this question?
|
1
|
May 3, 2020
|
|
Basic calculator
|
6
|
May 3, 2020
|
|
Mike and hash trick doubt
|
5
|
May 2, 2020
|
|
Deepak and gautam
|
1
|
May 1, 2020
|
|
Regarding test cases and input in c++
|
1
|
April 29, 2020
|
|
Sum of two arrays
|
3
|
April 30, 2020
|
|
Sort the Strings
|
1
|
April 27, 2020
|
|
Finding CB numbers
|
8
|
April 25, 2020
|
|
Tree left view input
|
7
|
April 24, 2020
|
|
Playing With Bits
|
1
|
April 22, 2020
|
|
Form biggest number
|
1
|
April 22, 2020
|
|
Prefix sum matrix
|
1
|
April 20, 2020
|
|
Recover Binary Search Tree
|
6
|
April 19, 2020
|
|
String sort run error
|
9
|
April 19, 2020
|
|
Stack reverse using recursion issue
|
9
|
April 18, 2020
|
|
Please help me identify the bug in my logic of implementation of pairing of graph section
|
1
|
April 18, 2020
|
|
Minimum Money Needed234
|
4
|
April 18, 2020
|
|
Grand temple (sorting and searching)
|
6
|
April 17, 2020
|
|
Print BST keys in the given range
|
6
|
April 17, 2020
|
|
COUNT DIGITS Problem
|
4
|
April 17, 2020
|
|
ARRAY basics concept
|
1
|
April 17, 2020
|
|
BST Deletion failing test case
|
6
|
April 17, 2020
|