Skip to content
View pathikrit's full-sized avatar

Organizations

@coatue
Block or Report

Block or report pathikrit

Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. better-files better-files Public

    Simple, safe and intuitive Scala I/O

    Scala 1.5k 146

  2. scalgos scalgos Public

    algorithms in scala

    Scala 436 129

  3. metarest metarest Public

    Scala macros to generate RESTful Models

    Scala 195 11

  4. sauron sauron Public

    Yet another Scala lens macro

    Scala 168 11

  5. jvican/dijon jvican/dijon Public

    A Dynamically Typed Scala Json Library

    Scala 181 13

  6. Sudoku Solver in Scala Sudoku Solver in Scala
    1
    val n = 9
    2
    val s = Math.sqrt(n).toInt
    3
    type Board = IndexedSeq[IndexedSeq[Int]]
    4
     
    5
    def solve(board: Board, cell: Int = 0): Option[Board] = (cell%n, cell/n) match {