This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @charset "utf-8"; | |
| body { | |
| margin: 0 auto; | |
| font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro W3",メイリオ,Meiryo,"MS Pゴシック",sans-serif; | |
| color: #444444; | |
| line-height: 1; | |
| max-width: 960px; | |
| padding: 30px; | |
| } | |
| h1, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package views.admin.mlproposals | |
| import org.specs2.mutable.After | |
| import org.specs2.mutable.Specification | |
| import org.specs2.specification.AfterExample | |
| import org.specs2.specification.BeforeExample | |
| import org.specs2.specification.Scope | |
| import play.api.test.Helpers.HTMLUNIT | |
| import play.api.test.Helpers.running |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import scala.collection.mutable.ListBuffer | |
| import scala.collection.mutable.StringBuilder | |
| object Main { | |
| def main(args: Array[String]) { | |
| try { | |
| println(searchLongestSubsequence("")) | |
| } catch { |