Gelöst


Calculate the sphericity of a Raschig ring
Sphericity is a measure of the roundness of any particle. It was defined by Wadell in 1935 as the ratio of the 'surface area of ...

mehr als 6 Jahre vor

Gelöst


Count the number of folds needed to pack a large sheet
In a certain paper factory, large sheets of paper are being made every day. Before sending the sheets for shipment, they have to...

mehr als 6 Jahre vor

Gelöst


Anagram
Given two strings, check whether they're anagrams to each other or not.

mehr als 6 Jahre vor

Gelöst


Sky full of stars - 01
draw a right triangle with asterisks of size n. For example, for n=5 '* ' '** ' '*** ' '**** ' ...

mehr als 6 Jahre vor

Gelöst


Count the days
Count the occurrence of a particular day (e.g. Monday) in a given year.

mehr als 6 Jahre vor

Gelöst


Exponentiation
Given 3 integers b,e,k; find -- mod(b^e,k)

mehr als 6 Jahre vor

Gelöst


chess position
given the position of a chess piece in algebric notation, convert it into 8 by 8 matrix format. For example, * 'Qd5' >> [3,4]...

mehr als 6 Jahre vor

Gelöst


Do they touch?
The center and radius of two circles are given. Determine whether they touch.

mehr als 6 Jahre vor

Gelöst


Grazing-02
A cow is tied to an outside corner of a rectangular barn of size (a,b) with a rope of length l. What is the maximum area the cow...

mehr als 6 Jahre vor

Gelöst


Grazing-01
A cow is tied to an outside corner of a rectangular barn of size (a,b) with a rope of length l. What is the maximum area the cow...

mehr als 6 Jahre vor

Gelöst


Kissing Circles-01
Three circles are mutually tangent to each other and also to a line. find the radius of the smallest circle. The radius of th...

mehr als 6 Jahre vor

Gelöst


Number generator
In this problem, a number will be given. starting with the first digit, keep on adding all subsequent digits till the state (...

mehr als 6 Jahre vor

Gelöst


Find the point of intersection of tangents.
Given two points on a conic, find the point of intersection of the corresponding tangents. The conic is given in Cartesian co...

mehr als 6 Jahre vor

Gelöst


Sieve of Eratosthenes
Find the nth lucky prime number. <https://planetmath.org/luckyprime> can u find a way for large n?

mehr als 6 Jahre vor

Gelöst


Find the shortest distance between a point and a straight line.
Given the Cartesian coordinates of three points A, B and C (in a flat Euclidean space), find the shortest distance between the ...

mehr als 6 Jahre vor

Gelöst


leap year
find the number of leap years within the given time interval

mehr als 6 Jahre vor

Gelöst


Decimal to binary conversion (without using built-in function)
convert the given decimal number to its equivalent binary without using built-in function. * n=18 * out='10010'

mehr als 6 Jahre vor

Gelöst


XOR fibonacci
a & b are the first two terms in the xor fibonacci sequence. Find the nth term of that sequence. XOR fib sequence is that in ...

mehr als 6 Jahre vor

Gelöst


Be happy
check whether the given number is happy in b-base. * A happy number can be defined as a number which will yield 1 when it is ...

mehr als 6 Jahre vor

Gelöst


Convert String to Morse Code
Convert a given string to international <http://en.wikipedia.org/wiki/Morse_code Morse Code> * Strings will only have [A-z], ...

mehr als 6 Jahre vor

Gelöst


Orthogonal lines
Check whether two given lines are orthogonal or not. Two lines are orthogonal if they create a right angle at their intersect...

mehr als 6 Jahre vor

Gelöst


Orthogonal Circles
Check whether two given circles are orthogonal or not. Two circles are orthogonal if they create a right angle at their inter...

mehr als 6 Jahre vor

Gelöst


Solve Sudoku puzzle step by
Sudoku is a famous puzzle. <https://en.wikipedia.org/wiki/Sudoku> Give a standard sudoku by a matrix (9*9), You need give a ...

mehr als 6 Jahre vor

Gelöst


Ugly numbers - 01
Ugly numbers are those whose prime factors are 2, 3 or 5. find the nth ugly number.

mehr als 6 Jahre vor

Gelöst


MinMax
* x=[2 4 3 1 6 4 6] * output , y=[1 6 2 4 3] here,y(1) is the minimum of x, y(2) is the maximum of x, y(3) is the 2nd mini...

mehr als 6 Jahre vor

Gelöst


How many ways?
Create a program to determine in how many ways can a regular n-gon be divided into n-2 triangles?

mehr als 6 Jahre vor

Gelöst


Ugly numbers - 03
For this case, a number is defined ugly if it has prime factors consisting of only elements of x. Find the nth ugly number. ...

mehr als 6 Jahre vor

Gelöst


Ugly numbers - 02
Ugly numbers are those whose prime factors are 2, 3 or 5. find the nth ugly number. n.b. unlike the previous problem,trivi...

mehr als 6 Jahre vor

Gelöst


No of squares in a grid
given a m*n grid calculate the no of possible squares & rectangles on that grid. output: y=[no of rectangles , no of sqa...

mehr als 6 Jahre vor

Gelöst


Calculate triangle area
Imagine that you want to calculate the areas of some triangles given in matrix form. First the coordinates of the vertices of th...

mehr als 6 Jahre vor

Mehr laden