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
- Host: GitHub
- URL: https://github.com/sumitarora/scala-programs
- Owner: sumitarora
- Created: 2013-06-04T02:23:01.000Z (about 13 years ago)
- Default Branch: master
- Last Pushed: 2013-06-04T02:38:06.000Z (about 13 years ago)
- Last Synced: 2025-01-14T03:16:12.068Z (over 1 year ago)
- Language: Scala
- Homepage:
- Size: 125 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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