one fable-low hijack cell
pair scala / staircase
envelope en_slash
ordering AB
effort low
English with slash '/' — '{X}/{Y}'
verdictpicked staircase (second-offered)
· classifierB
· tiernone
response (200 chars)
# Staircase in Scala
The classic staircase problem: print a right-aligned staircase of `#` characters of height `n`.
For `n = 4`:
```
#
##
###
####
```
## Solution
```scala
object Staircase
neighbors