Open 2021-19582 opened 1 year ago
If you do not follow these, your submission will not be graded.
var
val
def
List
Array
Range
1 to n
1 until n
fold
map
reduce
scala.annotation.tailrec
scala.util.control.TailCalls._
Math._
for
while
do-while
yield
에서 tuple외의 data structure를 쓰면 안된다는 것은 수업시간에 배운 algebraic data type 등도 사용하면 안된다는 것인가요?
이번 과제에 한해서는 그렇습니다
If you do not follow these, your submission will not be graded.
var
. Useval
anddef
instead.List
,Array
,Range
(1 to n
,1 until n
...),fold
,map
,reduce
or etc.scala.annotation.tailrec
, andscala.util.control.TailCalls._
,Math._
from the library.for
,while
,do-while
,yield
, ...)에서 tuple외의 data structure를 쓰면 안된다는 것은 수업시간에 배운 algebraic data type 등도 사용하면 안된다는 것인가요?