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
| @startuml | |
| actor clientD | |
| node app | |
| node car | |
| node tshirt | |
| car -> app | |
| app -> clientD | |
| client -> tshirt | |
| @enduml |
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 java.text.MessageFormat; | |
| public class Fibonacci { | |
| public static int fibonacci(int n) { | |
| if (n < 0) { | |
| throw new IllegalArgumentException("Currently not supported."); | |
| } | |
| //F(0) = 0 |
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
| public class ClassTest { | |
| static class A { | |
| } | |
| static class B extends A { | |
| } | |