Skip to content
View pathikrit's full-sized avatar

Organizations

@coatue
Block or Report

Block or report pathikrit

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

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

Report abuse

Pinned

  1. better-files better-files Public

    Simple, safe and intuitive Scala I/O

    Scala 1.5k 145

  2. scalgos scalgos Public

    algorithms in scala

    Scala 435 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 {