-
### Name
Urmi Rahman
-
### Description
Write a Java program to convert string to pascalcase
Pascalcase is a style of writing in which the first letter of each word is capitalized.
```
Input : "hello world"
Output : "Hel…
-
### Description
Write a R program to print diamond pattern
```
Input : 5
Output :
*
***
*****
*******
*********
*******
*****
***
*
```
How to contribute
- Save the solution…
-
### Name
Aditya Rawat
-
### Description
Write a Julia program to cylindrically rotate a matrix by 90 degrees
```
Input :
1 2 3
4 5 6
7 8 9
Output :
7 4 1
8 5 2
9 6 3
```
How to contribute
- Save the solution in `cylind…
-
### Description
Write a Rust program for linear search
Linear search is a very simple search algorithm. In this type of search, a sequential search is made over all items one by one. Every item is c…
-
### Description
Write a C++ program to convert weeks to days
1 week = 7 days
```
Input : 5
Output : 35
```
How to contribute
- Save the solution in `ConvertWeeksToDays.cpp` file
- Add `Conv…
-
### Description
Write a C++ program to merge two strings
```
Input : ABC DEF
Output : ABCDEF
```
How to contribute
- Save the solution in `MergeTwoStrings.cpp` file
- Add `MergeTwoStrings.cpp`…
-
### Description
Write a Python program to convert seconds to days
1 day = 24 hours = 1440 minutes = 86400 seconds
```
Input : 432000
Output : 5
```
How to contribute
- Save the solution in …
-
### Description
Write a C++ program to find perimeter of a square
Perimeter of square = 4 × `Side`
```
Side : 2
Perimeter : 8
```
How to contribute
- Save the solution in `program/FindPeri…