-
### Description
Write a Scala program to print numbers from n to 1 without using a loop
```
Input : 5
Output : 5 4 3 2 1
```
How to contribute
- Save the solution in `program/program/print-numbe…
-
### Description
Write a Julia program to find smallest element in a matrix
```
Input :
4 7 3
9 4 2
0 6 4
Output : 0
```
Contributed by - @ShubhraSuman
How to contribute
- Save the soluti…
-
### Description
Write a R program to convert meters to miles
1 mile = 1609 meters
```
Input : 8046.72
Output : 5
```
How to contribute
- Save the solution in `program/program/convert-meter…
-
### Description
Write a program to find power of a number
Power of a number is the result of multiplying a number by itself a certain number of times. For example, 2^3 = 2 * 2 * 2 = 8. The number 2 …
-
### Description
Write a program to convert fahrenheit to kelvin
(1°F − 32) × 5/9 + 273.15 = 255.928K
```
Input : 1
Output : 255.928
```
Contributed by - @KyleMcIndoe
### Tracking Issue…
-
### Description
Write a Haskell program to print floyd's triangle
Floyd's triangle is a right-angled triangle of natural numbers, used in computer science as an example of a space-filling curve. It …
-
### Description
Write a R program to print floyd's triangle
Floyd's triangle is a right-angled triangle of natural numbers, used in computer science as an example of a space-filling curve. It is nam…
-
### Description
Write a F# program to find the eigenvalues of a matrix
The eigenvalues and eigenvectors of a linear transformation are the values and vectors that determine the transformation. The e…
-
### Description
Write a F# program to print floyd's triangle
Floyd's triangle is a right-angled triangle of natural numbers, used in computer science as an example of a space-filling curve. It is na…
-
### Description
Write a Python program to check anagram string
Two strings are said to be anagrams if they make a meaningful word by rearranging or shuffling the letters of the string. In other …