😶🌫️
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
| ORG 8000H | |
| MOV P1, #0FFH | |
| MOV DPTR, #0E060H | |
| LOOP: JNB P1.0, CHECK0 | |
| JNB P1.1, SendData1 | |
| JNB P1.2, SendData2 | |
| JNB P1.3, SendData3 | |
| JMP LOOP |
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
| // Program support xbase 2 - 10 | |
| package main | |
| import ( | |
| "fmt" | |
| "flag" | |
| "strconv" | |
| "os" | |
| ) |
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 main | |
| import ( | |
| "fmt" | |
| "strconv" | |
| "os" | |
| ) | |
| func main () { | |
| start, _ := strconv.Atoi (os.Args[1]) |
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 main | |
| import ( | |
| "io/ioutil" | |
| "fmt" | |
| "os" | |
| ) | |
| func main () { | |
| if len (os.Args) > 1 { |
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
| /* | |
| 3996 | |
| O+O+O+O = D | |
| N+O+O+O+O = O | |
| M+T+T+T+T = GO | |
| 33 | |
| 899 | |
| 899 | |
| 899 | |
| 899 |
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 main | |
| import ( | |
| "os" | |
| "fmt" | |
| ) | |
| func main () { | |
| if len (os.Args) > 1 { | |
| s := "" |
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 main | |
| import "fmt" | |
| func Factorial (n int) int { | |
| if n == 0 { | |
| return 1 | |
| } | |
| return n * Factorial (n - 1) |
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 Main; | |
| public class DoubleLinkList { | |
| private DoubleLinkList prev; | |
| private int data; | |
| private DoubleLinkList next; | |
| public void add (int value) { | |
| DoubleLinkList node = this; | |
| DoubleLinkList prevNode = new DoubleLinkList(); |
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
| class plate { | |
| public static void main (String[] args) { | |
| String input = System.console().readLine(); | |
| String word = ""; | |
| for (int i = 0; i < input.length(); i++) { | |
| if (input.charAt(i) == ' ') { | |
| check (word); | |
| word = ""; | |
| } else if (i == input.length() - 1) { |
OlderNewer