Skip to content

Latest commit

 

History

History
76 lines (48 loc) · 1 KB

File metadata and controls

76 lines (48 loc) · 1 KB

Functional Programming Principles In Scala (Coursera)

Analytics

Course classes and assignments

Forcomp

package forcomp

import common._

object Anagrams { ... }
  

FunSet

package funSet

/**
 * 2. Purely Functional Sets.
 */
object FunSets { ... }
  

Huffman

package forcomp

import common._

object Huffman { ... }
  

ObjSets

package tweetsets

import common._
import TweetReader._

class Tweet(val user: String, val text: String, val retweets: Int) {

  override def toString: String =
    "User: " + user + "\n" +
    "Text: " + text + " [" + retweets + "]"

}

abstract class TweetSet { ... }
  

Recursion

package recursion

import common._

object Main { ... }
  

Streams

package streams

import common._

trait GameDef { ... }
  

@Author : Victor Bolinches Marin