-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
108 changed files
with
123 additions
and
123 deletions.
There are no files selected for viewing
2 changes: 1 addition & 1 deletion
2
src/main/scala/jp/co/dwango/s99/P01.scala → src/main/scala/s99/P01.scala
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package jp.co.dwango.s99 | ||
package s99 | ||
|
||
object P01 { | ||
def last[T](list: List[T]): T = | ||
|
2 changes: 1 addition & 1 deletion
2
src/main/scala/jp/co/dwango/s99/P02.scala → src/main/scala/s99/P02.scala
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package jp.co.dwango.s99 | ||
package s99 | ||
|
||
object P02 { | ||
def penultimate[T](list: List[T]): T = | ||
|
2 changes: 1 addition & 1 deletion
2
src/main/scala/jp/co/dwango/s99/P03.scala → src/main/scala/s99/P03.scala
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package jp.co.dwango.s99 | ||
package s99 | ||
|
||
object P03 { | ||
def nth[T](index: Int, list: List[T]): T = | ||
|
2 changes: 1 addition & 1 deletion
2
src/main/scala/jp/co/dwango/s99/P04.scala → src/main/scala/s99/P04.scala
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package jp.co.dwango.s99 | ||
package s99 | ||
|
||
import scala.annotation.tailrec | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
src/main/scala/jp/co/dwango/s99/P05.scala → src/main/scala/s99/P05.scala
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package jp.co.dwango.s99 | ||
package s99 | ||
|
||
import scala.annotation.tailrec | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
src/main/scala/jp/co/dwango/s99/P06.scala → src/main/scala/s99/P06.scala
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package jp.co.dwango.s99 | ||
package s99 | ||
|
||
import P05.reverse | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
src/main/scala/jp/co/dwango/s99/P07.scala → src/main/scala/s99/P07.scala
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package jp.co.dwango.s99 | ||
package s99 | ||
|
||
object P07 { | ||
def flatten(list: List[Any]): List[Any] = | ||
|
2 changes: 1 addition & 1 deletion
2
src/main/scala/jp/co/dwango/s99/P08.scala → src/main/scala/s99/P08.scala
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package jp.co.dwango.s99 | ||
package s99 | ||
|
||
object P08 { | ||
def compress[T](list: List[T]): List[T] = { | ||
|
2 changes: 1 addition & 1 deletion
2
src/main/scala/jp/co/dwango/s99/P09.scala → src/main/scala/s99/P09.scala
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package jp.co.dwango.s99 | ||
package s99 | ||
|
||
object P09 { | ||
def pack[T](list: List[T]): List[List[T]] = | ||
|
2 changes: 1 addition & 1 deletion
2
src/main/scala/jp/co/dwango/s99/P10.scala → src/main/scala/s99/P10.scala
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package jp.co.dwango.s99 | ||
package s99 | ||
|
||
import P04.length | ||
import P05.reverse | ||
|
2 changes: 1 addition & 1 deletion
2
src/main/scala/jp/co/dwango/s99/P11.scala → src/main/scala/s99/P11.scala
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package jp.co.dwango.s99 | ||
package s99 | ||
|
||
import Util.map | ||
import P04.length | ||
|
2 changes: 1 addition & 1 deletion
2
src/main/scala/jp/co/dwango/s99/P12.scala → src/main/scala/s99/P12.scala
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package jp.co.dwango.s99 | ||
package s99 | ||
|
||
import Util.flatMap | ||
import Util.copyN | ||
|
2 changes: 1 addition & 1 deletion
2
src/main/scala/jp/co/dwango/s99/P13.scala → src/main/scala/s99/P13.scala
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package jp.co.dwango.s99 | ||
package s99 | ||
|
||
object P13 { | ||
def encodeDirect[T](list: List[T]): List[(Int, T)] = { | ||
|
2 changes: 1 addition & 1 deletion
2
src/main/scala/jp/co/dwango/s99/P14.scala → src/main/scala/s99/P14.scala
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package jp.co.dwango.s99 | ||
package s99 | ||
|
||
import Util.flatMap | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
src/main/scala/jp/co/dwango/s99/P15.scala → src/main/scala/s99/P15.scala
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package jp.co.dwango.s99 | ||
package s99 | ||
|
||
import Util.flatMap | ||
import Util.copyN | ||
|
2 changes: 1 addition & 1 deletion
2
src/main/scala/jp/co/dwango/s99/P16.scala → src/main/scala/s99/P16.scala
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package jp.co.dwango.s99 | ||
package s99 | ||
|
||
object P16 { | ||
def drop[T](nth: Int, list: List[T]): List[T] = { | ||
|
2 changes: 1 addition & 1 deletion
2
src/main/scala/jp/co/dwango/s99/P17.scala → src/main/scala/s99/P17.scala
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package jp.co.dwango.s99 | ||
package s99 | ||
|
||
object P17 { | ||
def split[T](n: Int, list: List[T]): (List[T], List[T]) = | ||
|
2 changes: 1 addition & 1 deletion
2
src/main/scala/jp/co/dwango/s99/P18.scala → src/main/scala/s99/P18.scala
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package jp.co.dwango.s99 | ||
package s99 | ||
|
||
object P18 { | ||
def slice[T](i: Int, k: Int, list: List[T]): List[T] = { | ||
|
2 changes: 1 addition & 1 deletion
2
src/main/scala/jp/co/dwango/s99/P19.scala → src/main/scala/s99/P19.scala
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package jp.co.dwango.s99 | ||
package s99 | ||
|
||
import P05.reverse | ||
import Util.append | ||
|
2 changes: 1 addition & 1 deletion
2
src/main/scala/jp/co/dwango/s99/P20.scala → src/main/scala/s99/P20.scala
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package jp.co.dwango.s99 | ||
package s99 | ||
|
||
object P20 { | ||
def removeAt[T](nth: Int, list: List[T]): (List[T], T) = | ||
|
2 changes: 1 addition & 1 deletion
2
src/main/scala/jp/co/dwango/s99/P21.scala → src/main/scala/s99/P21.scala
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package jp.co.dwango.s99 | ||
package s99 | ||
|
||
object P21 { | ||
def insertAt[T](e: T, index: Int, list: List[T]): List[T] = | ||
|
2 changes: 1 addition & 1 deletion
2
src/main/scala/jp/co/dwango/s99/P22.scala → src/main/scala/s99/P22.scala
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package jp.co.dwango.s99 | ||
package s99 | ||
|
||
object P22 { | ||
def range(from: Int, to: Int): List[Int] = { | ||
|
2 changes: 1 addition & 1 deletion
2
src/main/scala/jp/co/dwango/s99/P23.scala → src/main/scala/s99/P23.scala
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package jp.co.dwango.s99 | ||
package s99 | ||
|
||
import P04.length | ||
import P20.removeAt | ||
|
2 changes: 1 addition & 1 deletion
2
src/main/scala/jp/co/dwango/s99/P24.scala → src/main/scala/s99/P24.scala
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package jp.co.dwango.s99 | ||
package s99 | ||
|
||
import P22.range | ||
import P23.randomSelect | ||
|
2 changes: 1 addition & 1 deletion
2
src/main/scala/jp/co/dwango/s99/P25.scala → src/main/scala/s99/P25.scala
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package jp.co.dwango.s99 | ||
package s99 | ||
|
||
import P04.length | ||
import P23.randomSelect | ||
|
2 changes: 1 addition & 1 deletion
2
src/main/scala/jp/co/dwango/s99/P26.scala → src/main/scala/s99/P26.scala
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package jp.co.dwango.s99 | ||
package s99 | ||
|
||
import Util.append | ||
import Util.map | ||
|
2 changes: 1 addition & 1 deletion
2
src/main/scala/jp/co/dwango/s99/P27a.scala → src/main/scala/s99/P27a.scala
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package jp.co.dwango.s99 | ||
package s99 | ||
|
||
import Util.flatMap | ||
import Util.map | ||
|
2 changes: 1 addition & 1 deletion
2
src/main/scala/jp/co/dwango/s99/P27b.scala → src/main/scala/s99/P27b.scala
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package jp.co.dwango.s99 | ||
package s99 | ||
|
||
import Util.flatMap | ||
import Util.map | ||
|
2 changes: 1 addition & 1 deletion
2
src/main/scala/jp/co/dwango/s99/P28a.scala → src/main/scala/s99/P28a.scala
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package jp.co.dwango.s99 | ||
package s99 | ||
|
||
import Util.map | ||
import Util.split | ||
|
2 changes: 1 addition & 1 deletion
2
src/main/scala/jp/co/dwango/s99/P28b.scala → src/main/scala/s99/P28b.scala
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package jp.co.dwango.s99 | ||
package s99 | ||
|
||
import Util.map | ||
import Util.foldLeft | ||
|
2 changes: 1 addition & 1 deletion
2
src/main/scala/jp/co/dwango/s99/P31.scala → src/main/scala/s99/P31.scala
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package jp.co.dwango.s99 | ||
package s99 | ||
|
||
object P31 { | ||
implicit class RichInt(self: Int) { | ||
|
2 changes: 1 addition & 1 deletion
2
src/main/scala/jp/co/dwango/s99/P32.scala → src/main/scala/s99/P32.scala
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package jp.co.dwango.s99 | ||
package s99 | ||
|
||
object P32 { | ||
def gcd(x: Int, y: Int): Int = { | ||
|
2 changes: 1 addition & 1 deletion
2
src/main/scala/jp/co/dwango/s99/P33.scala → src/main/scala/s99/P33.scala
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package jp.co.dwango.s99 | ||
package s99 | ||
|
||
object P33 { | ||
implicit class RichInt(self: Int) { | ||
|
2 changes: 1 addition & 1 deletion
2
src/main/scala/jp/co/dwango/s99/P46.scala → src/main/scala/s99/P46.scala
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package jp.co.dwango.s99 | ||
package s99 | ||
|
||
object P46 { | ||
def and(x: Boolean, y: Boolean): Boolean = x & y | ||
|
2 changes: 1 addition & 1 deletion
2
src/main/scala/jp/co/dwango/s99/P47.scala → src/main/scala/s99/P47.scala
This file contains 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
2 changes: 1 addition & 1 deletion
2
src/main/scala/jp/co/dwango/s99/P49.scala → src/main/scala/s99/P49.scala
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package jp.co.dwango.s99 | ||
package s99 | ||
|
||
import scala.collection.mutable | ||
|
||
|
4 changes: 2 additions & 2 deletions
4
src/main/scala/jp/co/dwango/s99/P55.scala → src/main/scala/s99/P55.scala
This file contains 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
4 changes: 2 additions & 2 deletions
4
src/main/scala/jp/co/dwango/s99/P56.scala → src/main/scala/s99/P56.scala
This file contains 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
8 changes: 4 additions & 4 deletions
8
src/main/scala/jp/co/dwango/s99/P57.scala → src/main/scala/s99/P57.scala
This file contains 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
4 changes: 2 additions & 2 deletions
4
src/main/scala/jp/co/dwango/s99/P58.scala → src/main/scala/s99/P58.scala
This file contains 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
2 changes: 1 addition & 1 deletion
2
src/main/scala/jp/co/dwango/s99/P61.scala → src/main/scala/s99/P61.scala
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package jp.co.dwango.s99 | ||
package s99 | ||
import binary_trees._ | ||
|
||
object P61 { | ||
|
2 changes: 1 addition & 1 deletion
2
src/main/scala/jp/co/dwango/s99/P61a.scala → src/main/scala/s99/P61a.scala
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package jp.co.dwango.s99 | ||
package s99 | ||
import binary_trees._ | ||
|
||
import scala.annotation.tailrec | ||
|
2 changes: 1 addition & 1 deletion
2
src/main/scala/jp/co/dwango/s99/P62.scala → src/main/scala/s99/P62.scala
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package jp.co.dwango.s99 | ||
package s99 | ||
import binary_trees._ | ||
|
||
object P62 { | ||
|
2 changes: 1 addition & 1 deletion
2
src/main/scala/jp/co/dwango/s99/P62b.scala → src/main/scala/s99/P62b.scala
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package jp.co.dwango.s99 | ||
package s99 | ||
import binary_trees._ | ||
|
||
object P62b { | ||
|
2 changes: 1 addition & 1 deletion
2
src/main/scala/jp/co/dwango/s99/P67.scala → src/main/scala/s99/P67.scala
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package jp.co.dwango.s99 | ||
package s99 | ||
import binary_trees._ | ||
|
||
object P67 { | ||
|
4 changes: 2 additions & 2 deletions
4
src/main/scala/jp/co/dwango/s99/P68.scala → src/main/scala/s99/P68.scala
This file contains 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
2 changes: 1 addition & 1 deletion
2
src/main/scala/jp/co/dwango/s99/P90.scala → src/main/scala/s99/P90.scala
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package jp.co.dwango.s99 | ||
package s99 | ||
|
||
import scala.collection.mutable.ListBuffer | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
src/main/scala/jp/co/dwango/s99/P96.scala → src/main/scala/s99/P96.scala
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package jp.co.dwango.s99 | ||
package s99 | ||
|
||
object P96 { | ||
/* | ||
|
2 changes: 1 addition & 1 deletion
2
src/main/scala/jp/co/dwango/s99/Util.scala → src/main/scala/s99/Util.scala
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package jp.co.dwango.s99 | ||
package s99 | ||
|
||
object Util { | ||
def append[T](a: List[T], b: List[T]): List[T] = | ||
|
2 changes: 1 addition & 1 deletion
2
...jp/co/dwango/s99/arithmetic/package.scala → src/main/scala/s99/arithmetic/package.scala
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package jp.co.dwango.s99 | ||
package s99 | ||
|
||
import P10.encode | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
.../jp/co/dwango/s99/binary_trees/Tree.scala → src/main/scala/s99/binary_trees/Tree.scala
This file contains 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
2 changes: 1 addition & 1 deletion
2
...est/scala/jp/co/dwango/s99/P01Check.scala → src/test/scala/s99/P01Check.scala
This file contains 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
2 changes: 1 addition & 1 deletion
2
...test/scala/jp/co/dwango/s99/P01Spec.scala → src/test/scala/s99/P01Spec.scala
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package jp.co.dwango.s99 | ||
package s99 | ||
|
||
import org.scalatest.funspec.AnyFunSpec | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...est/scala/jp/co/dwango/s99/P02Check.scala → src/test/scala/s99/P02Check.scala
This file contains 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
2 changes: 1 addition & 1 deletion
2
...test/scala/jp/co/dwango/s99/P02Spec.scala → src/test/scala/s99/P02Spec.scala
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package jp.co.dwango.s99 | ||
package s99 | ||
|
||
import org.scalatest.funspec.AnyFunSpec | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...est/scala/jp/co/dwango/s99/P03Check.scala → src/test/scala/s99/P03Check.scala
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package jp.co.dwango.s99 | ||
package s99 | ||
|
||
import org.scalacheck.{Arbitrary, Gen, Prop, Properties} | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...test/scala/jp/co/dwango/s99/P03Spec.scala → src/test/scala/s99/P03Spec.scala
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package jp.co.dwango.s99 | ||
package s99 | ||
|
||
import org.scalatest.funspec.AnyFunSpec | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...est/scala/jp/co/dwango/s99/P04Check.scala → src/test/scala/s99/P04Check.scala
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package jp.co.dwango.s99 | ||
package s99 | ||
|
||
import org.scalacheck.Properties | ||
import org.scalacheck.Prop.forAll | ||
|
2 changes: 1 addition & 1 deletion
2
...test/scala/jp/co/dwango/s99/P04Spec.scala → src/test/scala/s99/P04Spec.scala
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package jp.co.dwango.s99 | ||
package s99 | ||
|
||
import org.scalatest.funspec.AnyFunSpec | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...est/scala/jp/co/dwango/s99/P05Check.scala → src/test/scala/s99/P05Check.scala
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package jp.co.dwango.s99 | ||
package s99 | ||
|
||
import org.scalacheck.Properties | ||
import org.scalacheck.Prop.forAll | ||
|
2 changes: 1 addition & 1 deletion
2
...test/scala/jp/co/dwango/s99/P05Spec.scala → src/test/scala/s99/P05Spec.scala
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package jp.co.dwango.s99 | ||
package s99 | ||
|
||
import org.scalatest.funspec.AnyFunSpec | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...est/scala/jp/co/dwango/s99/P06Check.scala → src/test/scala/s99/P06Check.scala
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package jp.co.dwango.s99 | ||
package s99 | ||
|
||
import org.scalacheck.{Gen, Properties} | ||
import Gen.listOf, Gen.chooseNum | ||
|
2 changes: 1 addition & 1 deletion
2
...test/scala/jp/co/dwango/s99/P06Spec.scala → src/test/scala/s99/P06Spec.scala
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package jp.co.dwango.s99 | ||
package s99 | ||
|
||
import org.scalatest.funspec.AnyFunSpec | ||
|
||
|
Oops, something went wrong.