An open API service indexing awesome lists of open source software.

https://github.com/sumitarora/scala-programs

Scala Programming problems done for practice
https://github.com/sumitarora/scala-programs

Last synced: 29 days ago
JSON representation

Scala Programming problems done for practice

Awesome Lists containing this project

README

          

Scala-Programs
==============
* Hello.scala: Print hello world in scala.

* Area.scala: Program to find area and circumference of square, rectangle, triangle or circle?

* Floyd1.scala: Program to print floyd triangle as below.

1

2 3

4 5 6

7 8 9 10

11 12 13 14 15

* Floyd2.scala: Program to print floyd triangle as below.

1

0 1

0 1 0

1 0 1 0

1 0 1 0 1

* Matrix1.scala: Write a program to print the below output?

1 2 3 4 5

2 4 8 16 32

3 9 27 81 243

4 16 64 256 1024

5 25 125 625 3125