├── .github └── workflows │ └── gradle.yml ├── .gitignore ├── .run └── All tests.run.xml ├── contributing.md ├── data ├── p99a.dat ├── p99b.dat ├── p99c.dat └── p99d.dat ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── images ├── graph1.gif ├── graph2.gif ├── graph3.gif ├── p64.gif ├── p65.gif ├── p66.gif ├── p67.gif ├── p70.gif ├── p73.png ├── p83.gif ├── p84.gif ├── p92a.gif ├── p92b.gif └── p99.gif ├── readme.md ├── settings.gradle.kts └── src └── test └── kotlin └── org └── kotlin99 ├── arithmetic ├── P31.kt ├── P32.kt ├── P33.kt ├── P34.kt ├── P35.kt ├── P36.kt ├── P37.kt ├── P39.kt ├── P40.kt └── P41.kt ├── binarytrees ├── P55.kt ├── P56.kt ├── P57.kt ├── P58.kt ├── P59.kt ├── P60.kt ├── P61.kt ├── P62.kt ├── P63.kt ├── P64.kt ├── P65.kt ├── P66.kt ├── P67.kt ├── P68.kt ├── P69.kt └── Tree.kt ├── common ├── ContainsAll.kt └── collections.kt ├── graphs ├── Graph.kt ├── P80.kt ├── P81.kt ├── P82.kt ├── P83.kt ├── P84.kt ├── P85.kt ├── P86.kt ├── P87.kt ├── P88.kt └── P89.kt ├── lists ├── P01.kt ├── P02.kt ├── P03.kt ├── P04.kt ├── P05.kt ├── P06.kt ├── P07.kt ├── P08.kt ├── P09.kt ├── P10.kt ├── P11.kt ├── P12.kt ├── P13.kt ├── P14.kt ├── P15.kt ├── P16.kt ├── P17.kt ├── P18.kt ├── P19.kt ├── P20.kt ├── P21.kt ├── P22.kt ├── P23.kt ├── P24.kt ├── P25.kt ├── P26.kt ├── P27.kt └── P28.kt ├── logic ├── P46.kt ├── P48.kt ├── P49.kt └── P50.kt ├── misc ├── P90.kt ├── P91.kt ├── P92.kt ├── P93.kt ├── P94.kt ├── P95.kt ├── P96.kt ├── P97.kt ├── P97_v2.kt ├── P98.kt ├── P99.kt └── dancinglinks │ ├── DLMatrix.kt │ └── Node.kt └── multiwaytrees ├── MTree.kt ├── P70A.kt ├── P70B.kt ├── P71.kt ├── P72.kt └── P73.kt /.github/workflows/gradle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/.github/workflows/gradle.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .gradle 2 | .idea 3 | build 4 | out 5 | target 6 | -------------------------------------------------------------------------------- /.run/All tests.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/.run/All tests.run.xml -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/contributing.md -------------------------------------------------------------------------------- /data/p99a.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/data/p99a.dat -------------------------------------------------------------------------------- /data/p99b.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/data/p99b.dat -------------------------------------------------------------------------------- /data/p99c.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/data/p99c.dat -------------------------------------------------------------------------------- /data/p99d.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/data/p99d.dat -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/gradlew.bat -------------------------------------------------------------------------------- /images/graph1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/images/graph1.gif -------------------------------------------------------------------------------- /images/graph2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/images/graph2.gif -------------------------------------------------------------------------------- /images/graph3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/images/graph3.gif -------------------------------------------------------------------------------- /images/p64.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/images/p64.gif -------------------------------------------------------------------------------- /images/p65.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/images/p65.gif -------------------------------------------------------------------------------- /images/p66.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/images/p66.gif -------------------------------------------------------------------------------- /images/p67.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/images/p67.gif -------------------------------------------------------------------------------- /images/p70.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/images/p70.gif -------------------------------------------------------------------------------- /images/p73.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/images/p73.png -------------------------------------------------------------------------------- /images/p83.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/images/p83.gif -------------------------------------------------------------------------------- /images/p84.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/images/p84.gif -------------------------------------------------------------------------------- /images/p92a.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/images/p92a.gif -------------------------------------------------------------------------------- /images/p92b.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/images/p92b.gif -------------------------------------------------------------------------------- /images/p99.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/images/p99.gif -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/readme.md -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/settings.gradle.kts -------------------------------------------------------------------------------- /src/test/kotlin/org/kotlin99/arithmetic/P31.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/src/test/kotlin/org/kotlin99/arithmetic/P31.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/kotlin99/arithmetic/P32.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/src/test/kotlin/org/kotlin99/arithmetic/P32.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/kotlin99/arithmetic/P33.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/src/test/kotlin/org/kotlin99/arithmetic/P33.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/kotlin99/arithmetic/P34.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/src/test/kotlin/org/kotlin99/arithmetic/P34.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/kotlin99/arithmetic/P35.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/src/test/kotlin/org/kotlin99/arithmetic/P35.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/kotlin99/arithmetic/P36.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/src/test/kotlin/org/kotlin99/arithmetic/P36.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/kotlin99/arithmetic/P37.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/src/test/kotlin/org/kotlin99/arithmetic/P37.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/kotlin99/arithmetic/P39.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/src/test/kotlin/org/kotlin99/arithmetic/P39.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/kotlin99/arithmetic/P40.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/src/test/kotlin/org/kotlin99/arithmetic/P40.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/kotlin99/arithmetic/P41.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/src/test/kotlin/org/kotlin99/arithmetic/P41.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/kotlin99/binarytrees/P55.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/src/test/kotlin/org/kotlin99/binarytrees/P55.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/kotlin99/binarytrees/P56.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/src/test/kotlin/org/kotlin99/binarytrees/P56.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/kotlin99/binarytrees/P57.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/src/test/kotlin/org/kotlin99/binarytrees/P57.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/kotlin99/binarytrees/P58.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/src/test/kotlin/org/kotlin99/binarytrees/P58.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/kotlin99/binarytrees/P59.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/src/test/kotlin/org/kotlin99/binarytrees/P59.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/kotlin99/binarytrees/P60.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/src/test/kotlin/org/kotlin99/binarytrees/P60.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/kotlin99/binarytrees/P61.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/src/test/kotlin/org/kotlin99/binarytrees/P61.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/kotlin99/binarytrees/P62.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/src/test/kotlin/org/kotlin99/binarytrees/P62.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/kotlin99/binarytrees/P63.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/src/test/kotlin/org/kotlin99/binarytrees/P63.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/kotlin99/binarytrees/P64.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/src/test/kotlin/org/kotlin99/binarytrees/P64.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/kotlin99/binarytrees/P65.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/src/test/kotlin/org/kotlin99/binarytrees/P65.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/kotlin99/binarytrees/P66.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/src/test/kotlin/org/kotlin99/binarytrees/P66.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/kotlin99/binarytrees/P67.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/src/test/kotlin/org/kotlin99/binarytrees/P67.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/kotlin99/binarytrees/P68.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/src/test/kotlin/org/kotlin99/binarytrees/P68.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/kotlin99/binarytrees/P69.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/src/test/kotlin/org/kotlin99/binarytrees/P69.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/kotlin99/binarytrees/Tree.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/src/test/kotlin/org/kotlin99/binarytrees/Tree.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/kotlin99/common/ContainsAll.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/src/test/kotlin/org/kotlin99/common/ContainsAll.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/kotlin99/common/collections.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/src/test/kotlin/org/kotlin99/common/collections.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/kotlin99/graphs/Graph.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/src/test/kotlin/org/kotlin99/graphs/Graph.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/kotlin99/graphs/P80.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/src/test/kotlin/org/kotlin99/graphs/P80.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/kotlin99/graphs/P81.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/src/test/kotlin/org/kotlin99/graphs/P81.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/kotlin99/graphs/P82.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/src/test/kotlin/org/kotlin99/graphs/P82.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/kotlin99/graphs/P83.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/src/test/kotlin/org/kotlin99/graphs/P83.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/kotlin99/graphs/P84.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/src/test/kotlin/org/kotlin99/graphs/P84.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/kotlin99/graphs/P85.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/src/test/kotlin/org/kotlin99/graphs/P85.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/kotlin99/graphs/P86.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/src/test/kotlin/org/kotlin99/graphs/P86.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/kotlin99/graphs/P87.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/src/test/kotlin/org/kotlin99/graphs/P87.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/kotlin99/graphs/P88.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/src/test/kotlin/org/kotlin99/graphs/P88.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/kotlin99/graphs/P89.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/src/test/kotlin/org/kotlin99/graphs/P89.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/kotlin99/lists/P01.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/src/test/kotlin/org/kotlin99/lists/P01.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/kotlin99/lists/P02.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/src/test/kotlin/org/kotlin99/lists/P02.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/kotlin99/lists/P03.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/src/test/kotlin/org/kotlin99/lists/P03.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/kotlin99/lists/P04.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/src/test/kotlin/org/kotlin99/lists/P04.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/kotlin99/lists/P05.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/src/test/kotlin/org/kotlin99/lists/P05.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/kotlin99/lists/P06.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/src/test/kotlin/org/kotlin99/lists/P06.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/kotlin99/lists/P07.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/src/test/kotlin/org/kotlin99/lists/P07.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/kotlin99/lists/P08.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/src/test/kotlin/org/kotlin99/lists/P08.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/kotlin99/lists/P09.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/src/test/kotlin/org/kotlin99/lists/P09.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/kotlin99/lists/P10.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/src/test/kotlin/org/kotlin99/lists/P10.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/kotlin99/lists/P11.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/src/test/kotlin/org/kotlin99/lists/P11.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/kotlin99/lists/P12.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/src/test/kotlin/org/kotlin99/lists/P12.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/kotlin99/lists/P13.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/src/test/kotlin/org/kotlin99/lists/P13.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/kotlin99/lists/P14.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/src/test/kotlin/org/kotlin99/lists/P14.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/kotlin99/lists/P15.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/src/test/kotlin/org/kotlin99/lists/P15.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/kotlin99/lists/P16.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/src/test/kotlin/org/kotlin99/lists/P16.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/kotlin99/lists/P17.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/src/test/kotlin/org/kotlin99/lists/P17.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/kotlin99/lists/P18.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/src/test/kotlin/org/kotlin99/lists/P18.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/kotlin99/lists/P19.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/src/test/kotlin/org/kotlin99/lists/P19.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/kotlin99/lists/P20.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/src/test/kotlin/org/kotlin99/lists/P20.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/kotlin99/lists/P21.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/src/test/kotlin/org/kotlin99/lists/P21.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/kotlin99/lists/P22.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/src/test/kotlin/org/kotlin99/lists/P22.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/kotlin99/lists/P23.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/src/test/kotlin/org/kotlin99/lists/P23.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/kotlin99/lists/P24.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/src/test/kotlin/org/kotlin99/lists/P24.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/kotlin99/lists/P25.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/src/test/kotlin/org/kotlin99/lists/P25.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/kotlin99/lists/P26.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/src/test/kotlin/org/kotlin99/lists/P26.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/kotlin99/lists/P27.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/src/test/kotlin/org/kotlin99/lists/P27.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/kotlin99/lists/P28.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/src/test/kotlin/org/kotlin99/lists/P28.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/kotlin99/logic/P46.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/src/test/kotlin/org/kotlin99/logic/P46.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/kotlin99/logic/P48.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/src/test/kotlin/org/kotlin99/logic/P48.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/kotlin99/logic/P49.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/src/test/kotlin/org/kotlin99/logic/P49.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/kotlin99/logic/P50.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/src/test/kotlin/org/kotlin99/logic/P50.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/kotlin99/misc/P90.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/src/test/kotlin/org/kotlin99/misc/P90.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/kotlin99/misc/P91.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/src/test/kotlin/org/kotlin99/misc/P91.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/kotlin99/misc/P92.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/src/test/kotlin/org/kotlin99/misc/P92.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/kotlin99/misc/P93.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/src/test/kotlin/org/kotlin99/misc/P93.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/kotlin99/misc/P94.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/src/test/kotlin/org/kotlin99/misc/P94.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/kotlin99/misc/P95.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/src/test/kotlin/org/kotlin99/misc/P95.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/kotlin99/misc/P96.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/src/test/kotlin/org/kotlin99/misc/P96.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/kotlin99/misc/P97.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/src/test/kotlin/org/kotlin99/misc/P97.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/kotlin99/misc/P97_v2.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/src/test/kotlin/org/kotlin99/misc/P97_v2.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/kotlin99/misc/P98.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/src/test/kotlin/org/kotlin99/misc/P98.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/kotlin99/misc/P99.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/src/test/kotlin/org/kotlin99/misc/P99.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/kotlin99/misc/dancinglinks/DLMatrix.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/src/test/kotlin/org/kotlin99/misc/dancinglinks/DLMatrix.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/kotlin99/misc/dancinglinks/Node.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/src/test/kotlin/org/kotlin99/misc/dancinglinks/Node.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/kotlin99/multiwaytrees/MTree.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/src/test/kotlin/org/kotlin99/multiwaytrees/MTree.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/kotlin99/multiwaytrees/P70A.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/src/test/kotlin/org/kotlin99/multiwaytrees/P70A.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/kotlin99/multiwaytrees/P70B.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/src/test/kotlin/org/kotlin99/multiwaytrees/P70B.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/kotlin99/multiwaytrees/P71.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/src/test/kotlin/org/kotlin99/multiwaytrees/P71.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/kotlin99/multiwaytrees/P72.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/src/test/kotlin/org/kotlin99/multiwaytrees/P72.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/kotlin99/multiwaytrees/P73.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkandalov/kotlin-99/HEAD/src/test/kotlin/org/kotlin99/multiwaytrees/P73.kt --------------------------------------------------------------------------------