Skip to content
View pathikrit's full-sized avatar

Organizations

@coatue

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 Loading

  1. better-files Public

    Simple, safe and intuitive Scala I/O

    Scala 1.5k 144

  2. scalgos Public

    algorithms in scala

    Scala 434 89

  3. metarest Public

    Scala macros to generate RESTful Models

    Scala 195 11

  4. sauron Public

    Yet another Scala lens macro

    Scala 167 9

  5. jvican/dijon Public

    A Dynamically Typed Scala Json Library

    Scala 183 13

  6. 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 {