Recent questions and answers in Algorithm Challenges

0 votes
0 answers
1
Make Equal SubarrayProblem StatementYou are given two arrays (A and B) each of size N.You want to change A to B. Changing the i-th element of A to i-th element of B costs...
2 votes
2 answers
4
3 votes
2 answers
5
Given a linked list :1->2->3->4->5->6,make the following changes1->6->2->5->3->4What would be the most effiicient way to make this change?
0 votes
2 answers
6
Write a function (proper programming code) for multiplying two integers without using '*' operator and considering all corner cases.
1 votes
0 answers
7
Write an object oriented code for representing boolean expressions and then a function for checking the equivalence of two boolean expressions.
0 votes
0 answers
8
Given an arithmetic expression involving *, + only write an object oriented code for its representation and evaluation
3 votes
1 answer
10
How to generate permutation of a string? What will be the complexity?
Help get things started by asking a question.